How to find sum of quadratic

112 Views Asked by At

I got this quadratic function from physics that I need to find the sum of each term, up to whatever point. Written thusly:

$$ \sum_{n=1}^{t}4.945n^2$$

And is there someway to quickly figure this out? Or links to tutorials

1

There are 1 best solutions below

2
On BEST ANSWER

There is the standard formula $$\sum_{k=1}^n k^2=\frac{n(n+1)(2n+1)}{6}.$$

It can be proved by a pretty routine induction.