Wizardsofdra

Squares

Sep 21st, 2016
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. Example: Squaring Binomials
  2.  
  3. We have to square (6+y)^2 for problem 1, right? Well, it would be easier to read as (y+6)^2
  4.  
  5. Next, you have to use the FOIL method of distributing polynomials, FOIL stands for First Outer Inner Last
  6.  
  7. (y+6)^2 = (y+6)(y+6), right?
  8.  
  9. First: multiply both the y's together = y^2
  10. Outer: Multiply the "y" on the first binomial with the "6" on the 2nd binomial = 6y
  11. Inner: Multiply the "6" on the first binomial with the "y" on the 2nd binomial = 6y
  12. Last: Multiply both the "6"'s together = 36
  13.  
  14. NOW, add them all together = y^2 + 12y + 36
  15.  
  16. Now, for SQUARING binomials, there is a formula you can use.
  17. a^2 + 2ab + b^2
  18.  
  19. Lets look back at the previous binomial
  20. "y" is a
  21. "6" is b
  22.  
  23. SUBSTITUTE:
  24.  
  25. y^2 + 2(y)(6) + 6^2 =
  26. y^2 + 12y + 36
  27.  
  28.  
  29. there ya go, you now know how to square binomials~!~~~~!!!!!!!!!!!!!!!
Advertisement
Add Comment
Please, Sign In to add comment