Daniel S. answered 11/08/22
College Student Majoring in Math
Assuming that Q(x) and R(x) are just other polynomials, you don't actually need polynomial division to get the answer that they're looking for. D(x) is already inside of P(x). Look what happens if you factor out x2 from the first two terms of P(x):
P(x) = x2(9x - 4) - 9x,
= x2(D(x)) - 9x (Recall that D(x) = 9x-4))
= D(x) * x2 + (-9x)
Q(x) = x2, and your R(x) = -9x.
Here's what you get if you were to use standard polynomial long division:
x2 - 1
9x - 4 | 9x3 - 4x2 - 9x
-(9x3 - 4x2) ↓
,-9x
-(-9x + 4)
,-4
This shows that (9x^3 - 4x^2 - 9x)/(9x-4) = x^2 - 1 - 4/(9x-4). Multiplying both sides by 9x - 4:
9x^3 - 4x^2 - 9x = P(x) = (9x - 4)(x^2 - 1 - 4/(9x-4))
= x^2 * (9x-4) -(9x-4) - 4
= x^2 * (9x-4) - 9x
Which is the same answer we got from before.
Hope this helps!