• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 08:05
CEST 14:05
KST 21:05
  • Home
  • Forum
  • Calendar
  • Streams
  • Liquipedia
  • Features
  • Store
  • EPT
  • TL+
  • StarCraft 2
  • Brood War
  • Smash
  • Heroes
  • Counter-Strike
  • Overwatch
  • Liquibet
  • Fantasy StarCraft
  • TLPD
  • StarCraft 2
  • Brood War
  • Blogs
Forum Sidebar
Events/Features
News
Featured News
Serral wins Maestros of the Game 226ByuL, and the Limitations of Standard Play3Team Liquid Map Contest #22: Results and Winners7Code S Season 2 (2026): RO4 and Finals Preview12TL.net Map Contest #22 - Voting & Ladder Map Selection7
Community News
MC vs IdrA, Boxer vs Nal_rA to be Legacy Matches @ BlizzCon405.0.16 Hotfix (June 30) - Balance + Bug Fixes38Weekly Cups (June 22-28): Zergs thrive in new patch5[TLMC] Summer 2026 Ladder Map Rotation05.0.16 patch for SC2 goes live (8 worker start)102
StarCraft 2
General
MC vs IdrA, Boxer vs Nal_rA to be Legacy Matches @ BlizzCon Is the larve respawn broken? 5.0.16 patch for SC2 goes live (8 worker start) Weekly Cups (June 29-July 5): Solar Doubles Serral wins Maestros of the Game 2
Tourneys
HomeStory Cup 29 GSL CK #5 race war RSL Revival: Season 6 - Qualifiers and Main Event Vespene Cup #1 — $300+ USD, July 10 Douyu Cup 2026: $20,000 Legends Event (June 26-28)
Strategy
[G] Having the right mentality to improve
Custom Maps
New Map Maker - Looking for Advice - Love or Hate Work In Progress Melee Maps [D]RTS in all its shapes and glory <3
External Content
Mutation # 533 Die Together The PondCast: SC2 News & Results Mutation # 532 Nuclear Family Mutation # 531 Experimental Artillery
Brood War
General
BGH Auto Balance -> http://bghmmr.eu/ ASL22 General Discussion ASL 22 Proposed Map Pool Snow On New ASL S22 Map, Zerg Nerf BW General Discussion
Tourneys
CSLAN 4 is Coming! Escore Tournament StarCraft Season 2 The Casual Games of the Week Thread [Megathread] Daily Proleagues
Strategy
Simple Questions, Simple Answers Creating a full chart of Zerg builds Relatively freeroll strategies Why doesn't anyone use restoration?
Other Games
General Games
Stormgate/Frost Giant Megathread Nintendo Switch Thread Dawn of War IV Summer Games Done Quick 2026! ZeroSpace at Steam NextFest - Last free demo
Dota 2
Looking for a Dota Mentor Official 'what is Dota anymore' discussion
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Deck construction bug
TL Mafia
Five o'clock TL Mafia NeO.D_StephenKing vs This Guy From 1 Million Dance TL Mafia Community Thread TL Mafia Power Rank Vanilla Mini Mafia
Community
General
US Politics Mega-thread Russo-Ukrainian War Thread YouTube Thread Canadian Politics Mega-thread The Games Industry And ATVI
Fan Clubs
The HerO Fan Club!
Media & Entertainment
Movie Discussion! Series you have seen recently... [Req][Books] Good Fantasy/SciFi books [TV/BOOK] *SPOILERS* Game of Thrones Discussion
Sports
2024 - 2026 Football Thread Formula 1 Discussion McBoner: A hockey love story TeamLiquid Health and Fitness Initiative For 2023 Cricket [SPORT]
World Cup 2022
Tech Support
How to clean a TTe Thermaltake keyboard? Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List
Blogs
Major Shifts in the Gaming I…
TrAiDoS
An Exploration of th…
waywardstrategy
I'm an arrogant trash talke…
FlaShFTW
Gauntlet SC2: A Retrospectiv…
Ctone23
ramps on octagon
StaticNine
Funny Nicknames
LUCKY_NOOB
Customize Sidebar...

Website Feedback

Closed Threads



Active: 5246 users

The Math Thread - Page 6

Forum Index > General Forum
Post a Reply
Prev 1 4 5 6 7 8 32 Next All
Liebig
Profile Joined August 2010
France738 Posts
June 16 2017 20:47 GMT
#101
let f(n) be the result of your weird stuff for n

you have
f(0) = 0
f(2n + 1) = 2 * f(n) + 1
f(2n + 2) = f(n+1) + f(n) + 1

f(n)=n looks like a solution to me

Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
Last Edited: 2017-06-16 20:53:29
June 16 2017 20:47 GMT
#102
On June 17 2017 05:39 hypercube wrote:
Did you try some numerical experiments?

Are you interested in an exact expression or only asymptotic behaviour? The second one seems to be just on the order of n.


I am starting to think there isn't a reasonable way to get the exact expression. I've looked analysis of this algorithm up online and there doesn't seem to be any exact analysis online.

This is actually an analysis of best case quicksort comparisons that I am trying to do, if you are familiar.

I can see conceptually how this would be in the ballpark of n, but can you show the math for that?

Also I solved the actual values for 1 to 20. Itst a bit odd. nowhere near n for low values.

On June 17 2017 05:47 Liebig wrote:
let f(n) be the result of your weird stuff for n

you have
f(0) = 0
f(2n + 1) = 2 * f(n) + 1
f(2n + 2) = f(n+1) + f(n) + 1

f(n)=n looks like a solution to me



I've never seen recursion used this way, gonna take a minute to wrap my head around this lol
edit: ok I get it. that's neat, But I am not as quick as you in using it to analyze the outcome
Acrofales
Profile Joined August 2010
Spain18350 Posts
Last Edited: 2017-06-16 20:56:31
June 16 2017 20:54 GMT
#103
On June 17 2017 05:47 travis wrote:
Show nested quote +
On June 17 2017 05:39 hypercube wrote:
Did you try some numerical experiments?

Are you interested in an exact expression or only asymptotic behaviour? The second one seems to be just on the order of n.


I am starting to think there isn't a reasonable way to get the exact expression. I've looked analysis of this algorithm up online and there doesn't seem to be any exact analysis online.

This is actually an analysis of best case quicksort comparisons that I am trying to do, if you are familiar.

I can see conceptually how this would be in the ballpark of n, but can you show the math for that?

Show nested quote +
On June 17 2017 05:47 Liebig wrote:
let f(n) be the result of your weird stuff for n

you have
f(0) = 0
f(2n + 1) = 2 * f(n) + 1
f(2n + 2) = f(n+1) + f(n) + 1

f(n)=n looks like a solution to me



I've never seen recursion used this way, gonna take a minute to wrap my head around this lol

Well, it's m, such that m+1 is the greatest power of 2 less than n. However, add 1 for every power of 2 you encounter along the way. For instance n=16 has 8 sublists of size 2 (or greater), rather than 7. How many powers of 2 you'll encounter is hard to predict, but if you want asymptotic behaviour, take a completely absurd upper bound: say you have all m sublists with a size equal to a power of 2 (iow, all your sublists), even that would only give you 2m total lists (and is completely impossible), which is still O(n).
Simberto
Profile Blog Joined July 2010
Germany11913 Posts
June 16 2017 20:55 GMT
#104
On June 17 2017 05:39 hypercube wrote:
Did you try some numerical experiments?

Are you interested in an exact expression or only asymptotic behaviour? The second one seems to be just on the order of n.


Asymptotic is definitively at most order of n.

We can easily get an upper limit, because the kth step (with 0 being the initial set) produces <= 2^k new groups of numbers, and there are < log 2 (n) steps. Thus, there are definitively < Sum from 0 to log2(n) (2*k) = 2^(log2(n) + 1)-1 = 2n-1 total sets in this algorithm.

An exact number is going to be harder to get.
Liebig
Profile Joined August 2010
France738 Posts
June 16 2017 20:56 GMT
#105
Actually that's wrong, my bad
cause for n = 1, you should have 0 according to your rules, hmm

f(0) = 0
f(1) = 0
f(2) = 1
for n > 0, f(2n + 1) = 2 * f(n) + 1
for n > 0, f(2n + 2) = f(n+1) + f(n) + 1

f(n) = n doesn't work there, let me think a bit
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
Last Edited: 2017-06-16 20:58:34
June 16 2017 20:57 GMT
#106
So, this is actually from homework that I have been working on for a long time. The actual question is
"What is the fewest exchanges that the algorithm will execute for an input of size n. No
justification needed."

(What we have been doing demonstrates the best case for exchanges)

In exact counts, with n elements, if n =3 we do only 1 exchange. If n = 7, we do only 3 exchanges. if n = 15, we do 7 exchanges. After that it is always worse than this.

So does that mean that a technically correct answer to this question is: "(the floor of n/2) - 1" ?
Amanebak
Profile Blog Joined December 2010
Czech Republic528 Posts
June 16 2017 21:00 GMT
#107
On June 17 2017 05:42 Simberto wrote:
Show nested quote +
On June 17 2017 04:53 Amanebak wrote:
Hey.
I stumbled across a problem like this:

What is the longest gondola that can take a right-angle turn of a Venetian canal? The width of the canal is 2, respectively 3 length units before, resp. after the turn.

I apologize for my English.


Unless i missed something, the result is 5*sqrt(2).

The gondola needs to be able fit into the diagonal of the (2+3)*(2+3) square, which has a length of 5 sqrt (2)

At that point, 2sqrt(2) of the gondola is in the thinner canal, and 3sqrt(2) is in the thicker canal. It is obvious that no longer gondola could reach as far into the 3m canal if you draw a picture of the situation, and the 5sqrt(2) gondola can continue onwards from this point on.

Thank you for your reply.

If I understand it correctly, gondola turned 45 degrees and touches sides of the canal at both ends and touches the 'inner' edge of the turning with its side. That is the diagonal of the (2+3)*(2+3) square. Yes, it can go on, but I don't think it could go back, unless it bends. To imagine, I propose to make the difference of widths greater, like 1 before turn and 100 after.
BW
hypercube
Profile Joined April 2010
Hungary2735 Posts
Last Edited: 2017-06-16 21:13:30
June 16 2017 21:04 GMT
#108
On June 17 2017 05:36 Acrofales wrote:
I thought I had a simple solution, but it breaks if any list in your subdivisions has length equal to a power of 2 (that adds 1, which can occur at different points in the tree). So doesn't work, and given the weirdness of your algorithm, I'm not sure there's an easy way of figuring out how often you'll run into a power of 2.


I think I have an idea. Let's write the sets in rows like travis did, so the k-th row will have 2^(k-1) sets. So if we need K rows, we will have 2^K - 1 sets in total. Unfortunately, this only works if we terminate in a perfect row (e.g. a combination of 3s and 2s, that can't be broken down with our rule).

So here's an outline:

0. Observe that there is at most two unique (and consecutive) elements in any given row.

1. Prove that there is at most 1 non-perfect row. That is a row which has both elements of n > 1 and n <= 1. I will refer to this as the final row.

2. Give a formula for the sum of elements in a row. This is doable because exactly one of n and n-1 so the sum of the child elements is one less than the parent element.

3. Use this formula to calculate the number of rows, up to and including the first non-perfect row. (call this K)

4. Use the same formula to calculate the number of ineligible elements in the final row. (call this D)

Using the original idea, the final answer is 2^K - D - 1.

edit: 3 seems the trickiest, I'm pretty sure I can do the others.
"Sending people in rockets to other planets is a waste of money better spent on sending rockets into people on this planet."
CecilSunkure
Profile Blog Joined May 2010
United States2829 Posts
Last Edited: 2017-06-16 23:40:37
June 16 2017 21:05 GMT
#109
On June 09 2017 04:13 CecilSunkure wrote:
I've been eager to learn about Fourier transform. In particular I wanted to use it to do pitch adjustments of sound samples. I have some code here for playing sounds, and want to add some pitch adjustment stuff.

Would anyone mind chatting with me about the mathematics? I was hoping to find someone knowledge about Fourier transforms and their applications that I could bounce a bunch of questions off of. Please PM me if anyone would be so kind!


Well it took a while, but after some studying I ended up getting down an implementation. I referenced "Computational Frameworks for the Fast Fourier Transform" by Charles Van Loan. I also found two good reference implementations here and here. The first link is an implementation of some algorithms from the Van Loan book, which helped show a proper way to convert algorithms to C and verify for correctness. The second link by Paul Bourke is probably the most popular FFT implementation in existence. The Bourke implementation has a sort of nasty side-effect of scaling floating point error across the DFT, so for large inputs the results can zero out early. This can easily be fixed by adding in some direct cos/sin calls, so I did that.

In the end I got down my own implementation after referencing all 3 pieces mentioned above. Luckily all the Van Loan book is in vector and matrix algebra, something I'm already good at.

Anyways, here's my current implementation. I'll probably work on it a little more to create a more useful API. Also the final scale loop in the if statement ( sign < 0 ) would be a good candidate for SIMD ops. My implementation is in a more modern style than the older ones, so it should be a little faster due to less branch misses in favor of a little more raw computation. Also there's a symmetry to cut computational cost in half that I've yet to implement. But this is fine for now:

+ Show Spoiler +
#include <math.h>
#include <stdint.h>

#define PI 3.14159265359f

uint32_t Rev32( uint32_t x )
{
x = ((x & 0xAAAAAAAA) >> 1) | ((x & 0x55555555) << 1);
x = ((x & 0xCCCCCCCC) >> 2) | ((x & 0x33333333) << 2);
x = ((x & 0xF0F0F0F0) >> 4) | ((x & 0x0F0F0F0F) << 4);
x = ((x & 0xFF00FF00) >> 8) | ((x & 0x00FF00FF) << 8);
return (x >> 16) | (x << 16);
}

uint32_t PopCount( uint32_t x )
{
uint32_t a = x - ((x >> 1) & 0x55555555);
uint32_t b = (((a >> 2) & 0x33333333) + (a & 0x33333333));
uint32_t c = (((b >> 4) + b) & 0x0f0f0f0f);
uint32_t d = c + (c >> 8);
uint32_t e = d + (d >> 16);
uint32_t f = e & 0x0000003f;
return f;
}

uint32_t Log2( uint32_t x )
{
uint32_t a = x | ( x >> 1 );
uint32_t b = a | ( a >> 2 );
uint32_t c = b | ( b >> 4 );
uint32_t d = c | ( c >> 8 );
uint32_t e = d | ( d >> 16 );
uint32_t f = e >> 1;
return PopCount( f );
}

// x contains real inputs
// y contains imaginary inputs
// count must be a power of 2
// sign must be 1.0 (forward transform) or -1.0f (inverse transform)
void FFT( float* x, float* y, int count, float sign )
{
int exponent = (int)Log2( (uint32_t)count );

// bit reversal stage
// swap all elements with their bit reversed index within the
// lowest level of the Cooley-Tukey recursion tree
for ( int i = 1; i < count - 1; i++ )
{
uint32_t j = Rev32( (uint32_t)i );
j >>= (32 - exponent);
if ( i < j )
{
float tx = x[ i ];
float ty = y[ i ];
x[ i ] = x[ j ];
y[ i ] = y[ j ];
x[ j ] = tx;
y[ j ] = ty;
}
}

// for each recursive iteration
for ( int iter = 0, L = 1; iter < exponent; ++iter )
{
int Ls = L;
L <<= 1;
float u1 = 1.0f; // cos( pi / 2 )
float u2 = 0; // sin( pi / 2 )

float arg = 3.14159265359f / (float)Ls;
float wr = cosf( arg );
float wi = -sign * sinf( arg );

// rows in DFT submatrix
for ( int j = 0; j < Ls; ++j )
{
// do butterflies upon DFT row elements
for ( int i = j; i < count; i += L )
{
int index = i + Ls;
float t1 = u1 * x[ index ] - u2 * y[ index ];
float t2 = u1 * y[ index ] + u2 * x[ index ];
x[ index ] = x[ i ] - t1;
y[ index ] = y[ i ] - t2;
x[ i ] += t1;
y[ i ] += t2;
}

// Rotate u1 and u2 via Givens rotations (2d planar rotation).
// This keeps cos/sin calls in the outermost loop.
// Floating point error is scaled proportionally to Ls.
float z = u1 * wr - u2 * wi;
u2 = u1 * wi + u2 * wr;
u1 = z;
}
}

// scale factor for forward transform
if ( sign > 0 )
{
float inv_count = 1.0f / (float)count;
for ( int i = 0; i < count; i++ )
{
x[ i ] *= inv_count;
y[ i ] *= inv_count;
}
}
}
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
June 16 2017 21:17 GMT
#110
I am glad I set you guys off on a fun math journey. I figured out I was doing the question I was assigned completely wrong, which explains why it was so difficult. LOL
Simberto
Profile Blog Joined July 2010
Germany11913 Posts
June 16 2017 22:05 GMT
#111
On June 17 2017 06:00 Amanebak wrote:
Show nested quote +
On June 17 2017 05:42 Simberto wrote:
On June 17 2017 04:53 Amanebak wrote:
Hey.
I stumbled across a problem like this:

What is the longest gondola that can take a right-angle turn of a Venetian canal? The width of the canal is 2, respectively 3 length units before, resp. after the turn.

I apologize for my English.


Unless i missed something, the result is 5*sqrt(2).

The gondola needs to be able fit into the diagonal of the (2+3)*(2+3) square, which has a length of 5 sqrt (2)

At that point, 2sqrt(2) of the gondola is in the thinner canal, and 3sqrt(2) is in the thicker canal. It is obvious that no longer gondola could reach as far into the 3m canal if you draw a picture of the situation, and the 5sqrt(2) gondola can continue onwards from this point on.

Thank you for your reply.

If I understand it correctly, gondola turned 45 degrees and touches sides of the canal at both ends and touches the 'inner' edge of the turning with its side. That is the diagonal of the (2+3)*(2+3) square. Yes, it can go on, but I don't think it could go back, unless it bends. To imagine, I propose to make the difference of widths greater, like 1 before turn and 100 after.


Hm, i calculated it another way, and got a better result:

Just take a look at any rectangle which touch the corner of the canal. Before (and after) the turn, they all have the lengths (2+x) and (3+y), where 2/y = x/3 (intercept theorem). Thus, we are looking at the diagonal of a rectangle with sides (2+x) and (3+6/x), and especially for the minimum of those diagonals.

The diagonal has the length of

f(x) = Sqrt((2+x)²+(3+6/x)²)
and thus the derivative of:
f'(x) = 1/2f(x) * (2*(2+x)- (12/x²)*(3+6/x)
Which you would now need to find the zeroes of. (I had mathematica do it because i am lazy, the zero is apparently at (18)^(1/3). (And further checks will almost certainly prove it to be a minimum
That means that the lowest possible length of the gondola is f( (18)^(1/3)), which you can simplify to Sqrt (13 + 6*18^(1/3) + 3* 18^(2/3)), which is about 7.02, and indeed slightly less than 5Sqrt(2). Sorry for that.
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
Last Edited: 2017-06-16 22:41:25
June 16 2017 22:39 GMT
#112
edit: NEVERMIND I GET IT
BrTarolg
Profile Blog Joined June 2009
United Kingdom3574 Posts
June 17 2017 01:29 GMT
#113
Man, i have a degree in maths with a focus on pure

I *still* have no idea what's going on most of the time, inc in this thread lmao
Amanebak
Profile Blog Joined December 2010
Czech Republic528 Posts
June 17 2017 07:45 GMT
#114
On June 17 2017 07:05 Simberto wrote:
Show nested quote +
On June 17 2017 06:00 Amanebak wrote:
On June 17 2017 05:42 Simberto wrote:
On June 17 2017 04:53 Amanebak wrote:
Hey.
I stumbled across a problem like this:

What is the longest gondola that can take a right-angle turn of a Venetian canal? The width of the canal is 2, respectively 3 length units before, resp. after the turn.

I apologize for my English.


Unless i missed something, the result is 5*sqrt(2).

The gondola needs to be able fit into the diagonal of the (2+3)*(2+3) square, which has a length of 5 sqrt (2)

At that point, 2sqrt(2) of the gondola is in the thinner canal, and 3sqrt(2) is in the thicker canal. It is obvious that no longer gondola could reach as far into the 3m canal if you draw a picture of the situation, and the 5sqrt(2) gondola can continue onwards from this point on.

Thank you for your reply.

If I understand it correctly, gondola turned 45 degrees and touches sides of the canal at both ends and touches the 'inner' edge of the turning with its side. That is the diagonal of the (2+3)*(2+3) square. Yes, it can go on, but I don't think it could go back, unless it bends. To imagine, I propose to make the difference of widths greater, like 1 before turn and 100 after.


Hm, i calculated it another way, and got a better result:

Just take a look at any rectangle which touch the corner of the canal. Before (and after) the turn, they all have the lengths (2+x) and (3+y), where 2/y = x/3 (intercept theorem). Thus, we are looking at the diagonal of a rectangle with sides (2+x) and (3+6/x), and especially for the minimum of those diagonals.

The diagonal has the length of

f(x) = Sqrt((2+x)²+(3+6/x)²)
and thus the derivative of:
f'(x) = 1/2f(x) * (2*(2+x)- (12/x²)*(3+6/x)
Which you would now need to find the zeroes of. (I had mathematica do it because i am lazy, the zero is apparently at (18)^(1/3). (And further checks will almost certainly prove it to be a minimum
That means that the lowest possible length of the gondola is f( (18)^(1/3)), which you can simplify to Sqrt (13 + 6*18^(1/3) + 3* 18^(2/3)), which is about 7.02, and indeed slightly less than 5Sqrt(2). Sorry for that.

Good job!

There is another way, instead of using intercept theorem. You consider diagonals that touch the edge with their sides and finds the minimal one, using \alpha -- angle between the latter direction of the canal and the diagonal.
We want to minimize function

l = l_1+l_2 = 3/sin(\alpha) +2/cos(\alpha)

I got something like \alpha_min = \arctan \sqrt[3](3/2),
which is interesting to me. If we generalize this a bit, we take a, resp. b as parameters, instead of 2, resp. 3 and think of symmetries of this problem, we conclude

\alpha_min (a,b)=\pi/2-\alpha_min (b,a),

which demonstrates that

\arctan(x)+\argtan (1/x) = \pi/2,

if I am not mistaken.
BW
Kadungon
Profile Joined June 2017
41 Posts
Last Edited: 2017-06-17 11:33:04
June 17 2017 11:28 GMT
#115
On June 12 2017 02:45 CecilSunkure wrote:
So I've spent a day studying Fourier Transform. So far the math is very understandable, at least on how to apply it. Understanding why it works and specifically what it does is more challenging. Most resources on the subject are just absolutely awful, and I may have to go out and buy and old text book to get good information.

It seems like FFT implementations popped up around the 80s-90s, and nobody ever really looked at them again in depth. Since then everyone takes and old implementation and wraps it. Well there's FFTW, but that library is a software engineering nightmare. It's a horribly obfuscated and heavyweight solution for a particularly small function. But what can you expect from a bunch of academics.


You need to tread FFTW3 as a black box, because that is what it is supposed to be. It is used by Matlab and free to use for academics. So it is an industry standard.



The real challenge is to be able to derive all the math and understand it in all its correctness. Only this way can I write a good implementation.


Well, this is just not true. You implement it as a black box. There is no point understanding what is inside, as you are just implementing it. If you want to improve it or change it, then you need to know what is inside the box.

BTW, when I did some FFTW stuff and I wanted to test correctness, I got into difficulties because defining PI with 12 decimals, or even 30, wasn't accurate enough, and rounding would cause funky stuff, resulting in frequency bins that weren't supposed to fill up, to be filled, because of oscillations in how each sin or cos call was rounded each period.

On June 17 2017 10:29 BrTarolg wrote:
Man, i have a degree in maths with a focus on pure

I *still* have no idea what's going on most of the time, inc in this thread lmao


That experience I get all over again anew every 3 or 4 weeks. You talk to people or read some reference, and suddenly there exists a whole new field, with all it's own intricacies, that you never knew about, barely understand, and that you think you want to know more about. But that is just impossible. So you figure out some silly pragmatic workaround, accepting that you are just one person with finite time and finite talent.


CecilSunkure
Profile Blog Joined May 2010
United States2829 Posts
June 17 2017 16:50 GMT
#116
On June 17 2017 20:28 Kadungon wrote:
Well, this is just not true. You implement it as a black box. There is no point understanding what is inside, as you are just implementing it. If you want to improve it or change it, then you need to know what is inside the box.


But that's what I did. Improve and change it. Obviously not mathematically improve or change, just in terms of software engineering benefits.
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
June 22 2017 19:15 GMT
#117
Here's a math question I have.

i want to write a sum:

from i=1 to n of: 1/2*(i-1)i

But I don't actually want i to stop when i = n. I want i to stop when the sum of "i values" has reached n.
How do I do that?

It's like if I could write my sum as "from i = i +1 to n"

Example:

If n = 10
I want my sum to go through i values of: 1, 2, 3, 4 - then STOP.
Which gives me a sum of 0+1+3+6 = 10


Is the only way to do this to solve for the relationship between what I want i to do, and n?
Because I am not sure what the relationship is.
esla_sol
Profile Blog Joined September 2008
United States756 Posts
June 22 2017 20:42 GMT
#118
i teach elementary school and we do probability. things like dice and spinners. basic stuff. was talking to a friend about probability and he gave me this problem. i've been unable to make sense of it. any help is appreciated.


You and I are playing a game. We each shout out a number 1-100 every 5 seconds. Once someone says a number, that person can't say it again. What's the probability we match at least once?
HKTPZ
Profile Joined May 2017
105 Posts
Last Edited: 2017-06-22 21:01:23
June 22 2017 20:59 GMT
#119
f(x)=(1/6)(x-1)x(x+1)=(-x+x^3)/6

f(x) being the sum of (-i+i^2)/2, from i to x

Is that what you are looking for?

@travis
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
June 22 2017 21:24 GMT
#120
yeah I think it is
can I ask how you got it?
Prev 1 4 5 6 7 8 32 Next All
Please log in or register to reply.
Live Events Refresh
WardiTV Weekly
11:00
WardiTV Mondays #94
IntoTheiNu 747
WardiTV469
TKL 130
Rex121
IndyStarCraft 103
CranKy Ducklings19
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
Lowko364
TKL 130
Rex 121
SortOf 119
IndyStarCraft 103
StarCraft: Brood War
Britney 38378
Hyuk 2135
Shuttle 1591
Jaedong 792
Mini 584
EffOrt 291
Soulkey 270
firebathero 255
Larva 192
BeSt 179
[ Show more ]
Light 172
actioN 165
ZerO 137
ggaemo 127
Pusan 97
Rush 97
Hyun 96
Snow 95
Movie 90
Killer 66
hero 55
ToSsGirL 52
Sea.KH 44
soO 40
Sharp 39
[sc1f]eonzerg 36
910 32
Free 31
sSak 28
sorry 20
Icarus 19
Barracks 14
GoRush 13
Bale 13
scan(afreeca) 12
Hm[arnc] 8
Terrorterran 4
Dota 2
Gorgc6089
Dendi600
League of Legends
JimRising 310
Counter-Strike
olofmeister1945
x6flipin508
kRYSTAL_39
Super Smash Bros
Mew2King82
Other Games
singsing1598
B2W.Neo363
QueenE34
RuFF_SC232
ZerO(Twitch)8
Organizations
Other Games
gamesdonequick18066
StarCraft: Brood War
UltimateBattle 42
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
[ Show 14 non-featured ]
StarCraft 2
• CranKy Ducklings SOOP2
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• WagamamaTV202
• lizZardDota271
League of Legends
• Stunt774
Upcoming Events
PiGosaur Cup
11h 55m
The PondCast
21h 55m
Replay Cast
1d 20h
CrankTV Team League
1d 22h
OSC
2 days
Replay Cast
2 days
Replay Cast
2 days
CrankTV Team League
2 days
OSC
3 days
Replay Cast
3 days
[ Show More ]
RSL Revival
3 days
Serral vs Bunny
ByuN vs GgMaChine
CranKy Ducklings
3 days
Afreeca Starleague
3 days
Snow vs Jaedong
YSC vs hero
RSL Revival
4 days
Solar vs Rogue
Maru vs NightMare
Sparkling Tuna Cup
4 days
GSL
5 days
Replay Cast
6 days
WardiTV Weekly
6 days
Liquipedia Results

Completed

CSL Season 21: Qualifier 2
HSC XXIX
Eternal Conflict S2 E1

Ongoing

IPSL Spring 2026
Acropolis #4
YSL S3
CSL 2026 Summer (S21)
SCTL 2026 Spring
XSE Pro League 2026
IEM Cologne Major 2026
Stake Ranked Episode 2
CS Asia Championships 2026
Asian Champions League 2026
IEM Atlanta 2026
PGL Astana 2026
BLAST Rivals Spring 2026

Upcoming

Escore Tournament S3: W2
ASL Season 22: Wild Card Qualifier
CSLAN 4
Blizzard Classic Cup 2026
SC4ALL II: StarCraft II
Kung Fu Cup 2026 Grand Finals
RSL Revival: Season 6
CranK Gathers Season 4: BW vs SC2 Team League
Light Tournament 2026
Eternal Conflict S2 Finale
Eternal Conflict S2 E3
Eternal Conflict S2 E2
Heroes Pulsing #3
Logitech G Connect 2026
StarSeries Fall 2026
FISSURE Playground #5
BLAST Open Fall 2026
Esports World Cup 2026
BLAST Bounty Summer 2026
BLAST Bounty Summer Qual
Stake Ranked Episode 3
TLPD

1. ByuN
2. TY
3. Dark
4. Solar
5. Stats
6. Nerchio
7. sOs
8. soO
9. INnoVation
10. Elazer
1. Rain
2. Flash
3. EffOrt
4. Last
5. Bisu
6. Soulkey
7. Mini
8. Sharp
Sidebar Settings...

Advertising | Privacy Policy | Terms Of Use | Contact Us

Original banner artwork: Jim Warren
The contents of this webpage are copyright © 2026 TLnet. All Rights Reserved.