• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 23:56
CEST 05:56
KST 12:56
  • 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
TL.net Map Contest #21: Voting7[ASL20] Ro4 Preview: Descent11Team TLMC #5: Winners Announced!3[ASL20] Ro8 Preview Pt2: Holding On9Maestros of the Game: Live Finals Preview (RO4)5
Community News
Weekly Cups (Oct 6-12): Four star herO65.0.15 Patch Balance Hotfix (2025-10-8)79Weekly Cups (Sept 29-Oct 5): MaxPax triples up3PartinG joins SteamerZone, returns to SC2 competition325.0.15 Balance Patch Notes (Live version)119
StarCraft 2
General
Revisiting the game after10 years and wow it's bad 5.0.15 Patch Balance Hotfix (2025-10-8) TL.net Map Contest #21: Voting How to Block Australia, Brazil, Singapore Servers The New Patch Killed Mech!
Tourneys
SC4ALL $6,000 Open LAN in Philadelphia Crank Gathers Season 2: SC II Pro Teams LiuLi Cup - September 2025 Tournaments Sparkling Tuna Cup - Weekly Open Tournament Master Swan Open (Global Bronze-Master 2)
Strategy
Custom Maps
External Content
Mutation # 495 Rest In Peace Mutation # 494 Unstable Environment Mutation # 493 Quick Killers Mutation # 492 Get Out More
Brood War
General
Question regarding recent ASL Bisu vs Larva game BW General Discussion [Interview] Grrrr... 2024 BW caster Sayle Map with fog of war removed for one player?
Tourneys
[ASL20] Semifinal B [Megathread] Daily Proleagues [ASL20] Semifinal A SC4ALL $1,500 Open Bracket LAN
Strategy
Current Meta Relatively freeroll strategies BW - ajfirecracker Strategy & Training Siegecraft - a new perspective
Other Games
General Games
Stormgate/Frost Giant Megathread Dawn of War IV Nintendo Switch Thread ZeroSpace Megathread Path of Exile
Dota 2
Official 'what is Dota anymore' discussion LiquidDota to reintegrate into TL.net
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Deck construction bug Heroes of StarCraft mini-set
TL Mafia
SPIRED by.ASL Mafia {211640} TL Mafia Community Thread
Community
General
US Politics Mega-thread Russo-Ukrainian War Thread Things Aren’t Peaceful in Palestine Men's Fashion Thread Sex and weight loss
Fan Clubs
The herO Fan Club! The Happy Fan Club!
Media & Entertainment
[Manga] One Piece Series you have seen recently... Anime Discussion Thread Movie Discussion!
Sports
2024 - 2026 Football Thread Formula 1 Discussion MLB/Baseball 2023 NBA General Discussion TeamLiquid Health and Fitness Initiative For 2023
World Cup 2022
Tech Support
SC2 Client Relocalization [Change SC2 Language] Linksys AE2500 USB WIFI keeps disconnecting Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List Recent Gifted Posts
Blogs
Inbreeding: Why Do We Do It…
Peanutsc
From Tilt to Ragequit:The Ps…
TrAiDoS
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1104 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
Spain18089 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
Germany11591 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
Germany11591 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
Next event in 7h 4m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
RuFF_SC2 175
Nathanias 101
Nina 100
StarCraft: Brood War
PianO 179
Noble 51
Bale 20
Icarus 8
League of Legends
JimRising 685
Counter-Strike
Stewie2K620
PGG 274
Other Games
summit1g9001
gofns3514
C9.Mang0303
Mew2King71
Models1
Organizations
Other Games
gamesdonequick6178
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 14 non-featured ]
StarCraft 2
• Berry_CruncH131
• practicex 18
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• WagamamaTV480
League of Legends
• Rush1066
Upcoming Events
Wardi Open
7h 4m
CranKy Ducklings
1d 6h
Safe House 2
1d 13h
Sparkling Tuna Cup
2 days
Safe House 2
2 days
Tenacious Turtle Tussle
5 days
The PondCast
6 days
Liquipedia Results

Completed

Acropolis #4 - TS2
WardiTV TLMC #15
HCC Europe

Ongoing

BSL 21 Points
ASL Season 20
CSL 2025 AUTUMN (S18)
C-Race Season 1
IPSL Winter 2025-26
EC S1
Thunderpick World Champ.
CS Asia Championships 2025
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2
BLAST Open Fall 2025
BLAST Open Fall Qual
Esports World Cup 2025
BLAST Bounty Fall 2025
BLAST Bounty Fall Qual

Upcoming

SC4ALL: Brood War
BSL Season 21
BSL 21 Team A
RSL Offline Finals
RSL Revival: Season 3
Stellar Fest
SC4ALL: StarCraft II
CranK Gathers Season 2: SC II Pro Teams
eXTREMESLAND 2025
ESL Impact League Season 8
SL Budapest Major 2025
BLAST Rivals Fall 2025
IEM Chengdu 2025
PGL Masters Bucharest 2025
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 © 2025 TLnet. All Rights Reserved.