Difference between revisions of "User:Temperal/The Problem Solver's Resource3"
(→<span style="font-size:20px; color: blue;">Summations and Products</span>) |
m (explicit formulas) |
||
Line 11: | Line 11: | ||
===Rules of Summation=== | ===Rules of Summation=== | ||
− | <math>\sum_{i=a}^{b} | + | <math>\sum_{i=a}^{b}f(i)+g(i)=\sum_{i=a}^{b}f(i)+\sum_{i=a}^{b}g(i)</math> |
− | <math>\sum_{i=a}^{b} | + | <math>\sum_{i=a}^{b}c\cdot f(i)=c\cdot \sum_{i=a}^{b}f(i)</math> |
+ | |||
+ | <math>\sum_{i=1}^{n} i= \frac{n(n+1)}{2}</math>, and in general <math>\sum_{i=a}^{b} i= \frac{(b-a+1)(a+b)}{2}</math> | ||
+ | |||
+ | <math>\sum_{i=1}^{n} i^2 = \frac{n(n+1)(2n+1)}{6}</math> | ||
+ | |||
+ | <math>\sum_{i=1}^{n} i^3 = \left(\sum_{i=1}^{n} i\right)^2 = \left(\frac{n(n+1)}{2}\right)^2</math> | ||
<!--there are others, I forgot what they were. Could someone please fill them in? --> | <!--there are others, I forgot what they were. Could someone please fill them in? --> | ||
Line 19: | Line 25: | ||
===Rules of Products=== | ===Rules of Products=== | ||
− | <math>\prod_{i=a}^{b}x | + | <math>\prod_{i=a}^{b}x=x^{(b-a+1)}</math> |
− | <math>\prod_{i=a}^{b}x\cdot y=x^(b-a+1)y^(b-a+1)</math> | + | <math>\prod_{i=a}^{b}x\cdot y=x^{(b-a+1)}y^{(b-a+1)}</math> |
<!-- same as above, there are others.... but no fancy ones like divergence/convergence, please --> | <!-- same as above, there are others.... but no fancy ones like divergence/convergence, please --> |
Revision as of 17:44, 29 September 2007
Summations and ProductsDefinitions
Rules of Summation
, and in general
Rules of Products
|