You are not logged in.
Pages: 1
How do I prove
Last edited by ShivamS (2013-11-18 08:49:44)
Offline
Hi;
Mathematica already knows that is true but to do the steps
For the base case.
1^2==(n*(n + 1) (2 n + 1))/6 /.n->1
True
For the inductive step:
If that is true then
ought to be true. Subtract 1). from 2).
((n*(n + 1) (2 n + 1))/6 /. n -> n + 1) - (n*(n + 1) (2 n + 1))/6 // FullSimplify
(n+1)^2
The LHS is obviously (n+1)^2 so we are done.
In mathematics, you don't understand things. You just get used to them.
If it ain't broke, fix it until it is.
Always satisfy the Prime Directive of getting the right answer above all else.
Offline
The first statement doesn't compute properly...
Offline
Hi;
Change the = to ==, I am sorry.
In mathematics, you don't understand things. You just get used to them.
If it ain't broke, fix it until it is.
Always satisfy the Prime Directive of getting the right answer above all else.
Offline
Ok, thanks.
Offline
Hi;
I have made lots of changes to post #2.
Mathematica knows that sum:
Sum[k^2, {k, 1, n}]
In mathematics, you don't understand things. You just get used to them.
If it ain't broke, fix it until it is.
Always satisfy the Prime Directive of getting the right answer above all else.
Offline
Sum[...,{i,1,n}]
seems to be a bit faster than
Sum[...,{i,n}]
Why's that?
Here lies the reader who will never open this book. He is forever dead.
Taking a new step, uttering a new word, is what people fear most. ― Fyodor Dostoyevsky, Crime and Punishment
The knowledge of some things as a function of age is a delta function.
Offline
I guess because he needs time to figure the lower index.
In mathematics, you don't understand things. You just get used to them.
If it ain't broke, fix it until it is.
Always satisfy the Prime Directive of getting the right answer above all else.
Offline
But, it's an 0.03s difference.
Last edited by anonimnystefy (2013-11-18 10:07:16)
Here lies the reader who will never open this book. He is forever dead.
Taking a new step, uttering a new word, is what people fear most. ― Fyodor Dostoyevsky, Crime and Punishment
The knowledge of some things as a function of age is a delta function.
Offline
If it is not granularity, then that is probably the amount of time it would take.
In mathematics, you don't understand things. You just get used to them.
If it ain't broke, fix it until it is.
Always satisfy the Prime Directive of getting the right answer above all else.
Offline
Granularity?
Here lies the reader who will never open this book. He is forever dead.
Taking a new step, uttering a new word, is what people fear most. ― Fyodor Dostoyevsky, Crime and Punishment
The knowledge of some things as a function of age is a delta function.
Offline
Trying to measure a very small increment with a large measuring stick produces granularity.
In mathematics, you don't understand things. You just get used to them.
If it ain't broke, fix it until it is.
Always satisfy the Prime Directive of getting the right answer above all else.
Offline
How does that happen in M. Do you have an example?
Here lies the reader who will never open this book. He is forever dead.
Taking a new step, uttering a new word, is what people fear most. ― Fyodor Dostoyevsky, Crime and Punishment
The knowledge of some things as a function of age is a delta function.
Offline
I do not think I can. If you only have a 3 ft. stick and you and I both try to measure on inch, the measurements will vary greatly.
In mathematics, you don't understand things. You just get used to them.
If it ain't broke, fix it until it is.
Always satisfy the Prime Directive of getting the right answer above all else.
Offline
I do not think that is the problem.
Here lies the reader who will never open this book. He is forever dead.
Taking a new step, uttering a new word, is what people fear most. ― Fyodor Dostoyevsky, Crime and Punishment
The knowledge of some things as a function of age is a delta function.
Offline
Then I would go with the fact that it has to make one more decision.
In mathematics, you don't understand things. You just get used to them.
If it ain't broke, fix it until it is.
Always satisfy the Prime Directive of getting the right answer above all else.
Offline
Thanks for fixing it.
Offline
Hi;
You are welcome.
In mathematics, you don't understand things. You just get used to them.
If it ain't broke, fix it until it is.
Always satisfy the Prime Directive of getting the right answer above all else.
Offline
Pages: 1