use pascals triangle to expand the binomical expression (1+2x)^3?
Let's write first few lines of Pascal's triangle:
"~~~~~~~~~~~~1\\\\\n~~~~~~~~1~~~~~~~1\\\\\n~~~~1~~~~~~2~~~~~~~1\\\\\n1~~~~~~3~~~~~~~3~~~~~~1"
We can see that coefficients for cubic binomial are 1, 3, 3, 1.
"(1+2x)^3=1\\cdot1^3+3\\cdot1^2\\cdot2x+\\\\\n+3\\cdot1\\cdot(2x)^2+1\\cdot(2x)^3=\\\\\n=1+6x+12x^2+8x^3"
Comments
Leave a comment