How do you check whether factorization is correct?I followed the order of:
1. x^2 - (y^2 - 4y - 4)
2. X^2 - (y + 2)^2
3. x - (y + 2) • x + (y + 2)
4. (x - y - 2) • (x + y + 2)
I followed the order of:
1. x^2 - (y^2 - 4y - 4) . . . . . The signs inside are not correct.
2. X^2 - (y + 2)^2 . . . . . . . . That leading letter needs to be in lower case.
3. x - (y + 2) • x + (y + 2) . . . . . Grouping symbols are missing.
4. (x - y - 2) • (x + y + 2) . . . . . You can drop the multiplication dot for style purposes.
Thanks for pointing out the little error!Look at this:
1. x^2 - (y^2 + 4y + 4)
2. x^2 - (y + 2)^2
3. [x - (y + 2)][x + (y + 2)]
4. (x - y - 2)(x + y + 2)