Find a formula for partial sum of series \[\large 1!(1^2+1)+2!(2^2+1)+3!(3^2+1)+\cdots+n!(n^2+1)\]
How are the processes of natural selection and artificial selection similar? How are they different? u help i help u
why r there random exclamation marks?
that exclamation mark has a different meaning in math, it is a short way for writing a product . For example, 3! and 10! mean this : \[\begin{align}3! &= 3\times 2\times 1\\10!&=10\times 9\times 8 \times 7\times 6\times 5\times 4\times 3\times 2\times 1\end{align}\] I'm pretty sure you will find answer to your biology question in your lesson pages... look it up!
Factoral sum is fun and damn complicated. See WolframAlpha section here: http://mathworld.wolfram.com/FactorialSums.html The only one with a simple form is \[\sum_{k=1}^{n}k*k!\] But the term in urs is k^2*k! and k^0*k! respectively. So I don't know. Sorry!
Ahh how do you work \(\sum\limits_{k=1}^{n}k*k!\) ?
\(\huge\bf\rlap{\color{Lime}{Thanks\ Good\ Bye}}{\color{Blue}{\; Thanks\ Good\ bye}}\)
why did that one look so weird :|
Wolfram said it is equal to (n+1)! -1 and it appears you can prove that by induction.
Yup - \[\sum_{k=1}^{n}k*k! = (n+1)! - 1\] can indeed be proven by induction :)
Base case : \(\sum\limits_{k=1}^1=1=2-1=(1+1)!-1~~\color{green}{\checkmark}\) Induction hypothesis : Let \(t\in\mathbb{N}\) be an integer greater than \(1\) and assume that the proposition is true for \(n=t\). That is \(\sum\limits_{k=1}^tk*k!=(t+1)!-1\) Induction step : \(\begin{align}\sum\limits_{k=1}^{t+1} k*k! &=t+1+\sum\limits_{k=1}^{t} k*k!\\~\\ &=t+1+ (t+1)!-1 \\~\\&=?\end{align}\) how to conclude ?
First line on the induction step is missing some (k+1) terms there. Check again n u will see :)
Wow silly mistake! let me fix it thnks Base case : \(\sum\limits_{k=1}^1=1=2-1=(1+1)!-1~~\color{green}{\checkmark}\) Induction hypothesis : Let \(t\in\mathbb{N}\) be an integer greater than \(1\) and assume that the proposition is true for \(n=t\). That is \(\sum\limits_{k=1}^tk*k!=(t+1)!-1\) Induction step : \(\begin{align}\sum\limits_{k=1}^{t+1} k*k! &=(t+1)(t+1)!+\sum\limits_{k=1}^{t} k*k!\\~\\ &=(t+1)(t+1)!+ (t+1)!-1 \\~\\&=(t+1)!(t+1+1)-1\\~\\&=(t+2)!-1\end{align}\) as desired \(\blacksquare\)
I have (t+1)! - 1 + (t +1)*(t+1)! in that line.
gotch! i think we can try something similar for the actual problem too
U ask n u will receive. Please put ur seat belt on....
but.. but.. don't we need to know the formula upfront for induction
Let G(n) = \[\sum_{k=1}^{n}(k^2+1)*k!\] So G(n) + 2((n+1)!-1) =\[\sum_{k=1}^{n}((k^2+1)*k! + 2k*k!)\] =\[\sum_{k=1}^{n}(k^2+2k+1)*k!\] =\[\sum_{k=1}^{n}(k+1)^2*k!\] =\[\sum_{k=1}^{n}(k+1)*(k+1)!\] = G(n+1) - G(1) U should be able to go on from there :) Fun one!
that looks brillinat!!! so do we have \[2((n+1)!-1)=G(n+1)-G(n)\] which telescpes ? let me try
In summary G(n) + 2((n+1)! - 1) = G(n+1) - G(1); since G(1)=2; G(n+1) = G(n) + 2*(n+1)! :)
\[G(n) + 2((n+1)!-1) = G(n+1)-G(1) \\~\\G(n+1)=G(n)+2(n+1)!\] this looks like a recurrence relation ?
@rational Yes indeed. dont know if u want to go on from here thou.
thats indeed a clever way to get a recurrence relation
but thats the dead end i guess as solving it looks painful
@rational agreed - did ur assignment ask for a specific solution? been waiting to see @wio may have something fun to say here :P
me too, explicit formula is good... otherwise recurrence relation is the next best thing we can have
Also since this is a summation, there is a trivial recurrence relation always : \[\sum\limits_{k=1}^{n+1}f(k) = f(n+1)+\sum\limits_{k=1}^{n}f(k) \] So im guessing the question is really about finding an explicit formula..
I was trying a different recursion:\[ (n+1)!((n+1)^2+1) = n!(n^3+3n^2 +4n+2)\\ =n!(n(n^2+1) + 3(n^2+1) +(3n-1))\\ =(n+3)n!(n^2+1)+(3n-1)n! \]\[ f(n+1) = (n+3)f(n)+ (3n-1)n! \]When I tried to expand and get a pattern I got:\[ f(n+k) =(n+3)^kf(n)+(3n-1)n!\left(\frac{1-(n+3)^k}{1-(n+3)}\right) \]I guess letting \(k=0\) would check whether the work is correct
Interesting.. letting k=0 gives f(n) = f(n), so it checks out
If there was a nice telescope, it would require that there be some nice \(k\) value, but I don't see it.
DAMN it - serve me right for jumping steps n not writing things out...mistake at the next to the last step :( G(n) + 2*(n+1)! - 2 =\[\sum_{k=1}^{n}(k+1)*(k+1)!\] Let j=k+1 so k=1, j=2, and k=n, j=n+1 Substitute k by j in the above =\[\sum_{j=2}^{n+1}(j)*(j)!\] =\[\sum_{j=1}^{n+1}(j)*(j)!\] - 1*1! = (n+2)! - 1 - 1 So G(n) + 2*(n+1)! - 2 = (n+2)! - 2 G(n) = (n+2)! - 2*(n+1)! = (n+1)!*(n + 2 - 2) = n(n+1)! which matches w what u found on wolfram @rational It was such a stupid mistake that I made!!!! :(
that looks neat!! thank you
Join our real-time social learning platform and learn together with your friends!