
2nd August 2007, 08:37 AM
|
|
Junior Member
|
|
Join Date: Aug 2007
Posts: 1
Credits: 0
|
|
It's not an equation, so you can't "solve" it. You can write out the expression though.The binomial theorem relates to rows of Pascal's triangle. Numbering the rows starting with 0, the jth entry of the ith row is i-choose-j. And the nth row also tells you the coefficients of (a+b)^n when it's expanded. The first few rows of the triangle are:11 11 2 11 3 3 1The 3rd row (again, starting the indexing at 0 instead of 1) is "1 3 3 1". So this means (c-d)^3, which is (c + (-d))^3, is:1*[ c^3 (-d)^0 ] +3*[c^2 (-d)^1] + 3*[c^1 (-d)^2 ] + 1*[c^0 (-d)^3]This simplifies to c^3 - 3(c^2)d + 3cd^2 - d^3
|