All questions
Question 1
Express x+32x2+7x−3 as q(x)+x+3r(x) using the polynomial division algorithm, where deg(r)<deg(x+3).
- 2x+1+x+3−6 (correct answer)
- 2x+1+x+36
- 2x−1+x+30
- 2x+1+x+3−6x
Explanation: This question tests your understanding of polynomial division—rewriting a rational expression as a polynomial quotient plus a proper fraction, just like rewriting 17/5 as 3+2/5. The division algorithm for polynomials says any rational expression a(x)/b(x) can be written as q(x)+r(x)/b(x), where q(x) is the quotient (polynomial part) and r(x) is the remainder with degree strictly less than the divisor's degree. To divide 2x2+7x−3 by x+3, divide 2x2 by x to get 2x, multiply by (x+3) to get 2x2+6x, subtract to get x−3, then divide x by x to get 1, multiply to get x+3, and subtract to yield -6 as remainder. Choice A correctly divides to get quotient 2x+1 and remainder -6 with deg(r)<deg(x+3). Choice B might come from a sign error in the final subtraction, turning -6 into +6. Before dividing, always check: can you factor the numerator and cancel with the denominator? The degree requirement (deg of remainder less than deg of divisor) tells you when to stop dividing: if dividing by (x+3) (degree 1), remainder must be degree 0 (constant). Question 2
Use polynomial long division (or inspection) to rewrite the rational expression x−22x3+x2−5x+3 in the form q(x)+x−2r(x), where deg(r)<deg(x−2).
- 2x2+5x+5+x−213 (correct answer)
- 2x2+5x+5+x+213
- 2x2+5x+x−213
- 2x2+5x+5+x−213x
Explanation: This question tests your understanding of polynomial division—rewriting a rational expression as a polynomial quotient plus a proper fraction, just like rewriting 517 as 3+52. The division algorithm for polynomials says any rational expression b(x)a(x) can be written as q(x)+b(x)r(x), where q(x) is the quotient (polynomial part) and r(x) is the remainder with degree strictly less than the divisor's degree. To divide 2x3+x2−5x+3 by x−2, start by dividing 2x3 by x to get 2x2, multiply by (x−2) to get 2x3−4x2, subtract to yield 5x2−5x, then continue to get 5x next, and finally 5, resulting in a remainder of 13. Choice A correctly divides to get quotient 2x2+5x+5 and remainder 13 with deg(r)<deg(x−2). Choice C forgets the constant term in the quotient and the full remainder, likely from stopping too early in the division. Before dividing, always check: can you factor the numerator and cancel with the denominator? The degree requirement (deg of remainder less than deg of divisor) tells you when to stop dividing: if dividing by (x−2) (deg 1), remainder must be deg 0 (constant). Question 3
Rewrite x−2x2−4 in the form q(x)+x−2r (you may simplify first), with deg(r)<deg(x−2).
- x+2+x−20 (correct answer)
- x−2+x−20
- x+2+x−24
- x+2+x−2x
Explanation: This question tests your understanding of polynomial division—rewriting a rational expression as a polynomial quotient plus a proper fraction, just like rewriting 17/5 as 3 + 2/5. The division algorithm for polynomials says any rational expression a(x)/b(x) can be written as q(x) + r(x)/b(x), where q(x) is the quotient (polynomial part) and r(x) is the remainder with degree strictly less than the divisor's degree. Before dividing, let's check if we can factor: x² - 4 = (x + 2)(x - 2), so (x² - 4)/(x - 2) = (x + 2)(x - 2)/(x - 2) = x + 2 after canceling! This means the quotient is x + 2 with remainder 0. Choice A correctly gives x + 2 + 0/(x - 2), which simplifies to just x + 2. Choice B incorrectly has quotient x - 2, C adds an unnecessary remainder of 4, and D includes an x in the remainder which would violate the degree requirement. Before dividing, always check: can you factor the numerator and cancel with the denominator? If (x² - 4)/(x - 2) factors to (x + 2)(x - 2)/(x - 2) = x + 2 (no remainder!), that's instant. Only do long division if simplification doesn't eliminate the division entirely. This pre-check saves enormous time!
Question 4
Use polynomial long division to rewrite x+14x3−x2+2x−1 in the form q(x)+x+1r(x), where deg(r)<1.
- 4x2−5x+7+x+1−8 (correct answer)
- 4x2−5x+7+x+18
- 4x2+5x+7+x+1−8
- 4x2−5x+x+1−8x
Explanation: This question tests your understanding of polynomial division—rewriting a rational expression as a polynomial quotient plus a proper fraction, just like rewriting 17/5 as 3 + 2/5. Polynomial long division works exactly like numerical long division: (1) divide the leading terms to get the first term of quotient, (2) multiply the entire divisor by that term, (3) subtract from the dividend, (4) repeat with what remains until the remainder's degree drops below the divisor's degree. Let's divide (4x³ - x² + 2x - 1) by (x + 1): First, 4x³ ÷ x = 4x², multiply back: 4x²(x + 1) = 4x³ + 4x², subtract to get -5x² + 2x - 1. Next, -5x² ÷ x = -5x, multiply back: -5x(x + 1) = -5x² - 5x, subtract to get 7x - 1. Finally, 7x ÷ x = 7, multiply back: 7(x + 1) = 7x + 7, subtract to get -8. Choice A correctly shows quotient 4x² - 5x + 7 and remainder -8, giving us 4x² - 5x + 7 + (-8)/(x + 1). Choice B has remainder 8 instead of -8, missing the negative sign from the final subtraction: -1 - 7 = -8. Before dividing, always check if you can factor and simplify—here we can't, so long division is necessary. The degree requirement tells you to stop when remainder degree < divisor degree: -8 has degree 0, which is less than 1, so we're done!
Question 5
The rational expression x2−x+1x4−3x3+5x−2 can be written as q(x)+x2−x+1r(x) where the degree of r(x) is less than 2. What is the coefficient of x in r(x)?
- −1
- 2
- 3
- 4 (correct answer)
Explanation: Performing polynomial long division: x2−x+1x4−3x3+5x−2=x2−2x−1+x2−x+14x−3. The remainder r(x)=4x−3, so the coefficient of x is 4. Choice A comes from sign errors during division. Choice B results from incorrectly computing the final subtraction step. Choice C occurs from arithmetic mistakes in the intermediate steps. Question 6
Find the quotient q(x) and remainder r(x) when dividing x3+4x2−2x+7 by x+2, and write x+2x3+4x2−2x+7=q(x)+x+2r(x) with deg(r)<deg(x+2).
- x2+2x−6+x+219 (correct answer)
- x2+2x−6+x+2−19
- x2+2x−6+x+219x
- x2+4x−2+x+215
Explanation: This question tests your understanding of polynomial division—rewriting a rational expression as a polynomial quotient plus a proper fraction, just like rewriting 17/5 as 3 + 2/5. The division algorithm for polynomials says any rational expression a(x)/b(x) can be written as q(x) + r(x)/b(x), where q(x) is the quotient (polynomial part) and r(x) is the remainder with degree strictly less than the divisor's degree. Using synthetic division for x3+4x2−2x+7 by x+2 (root −2), bring down 1, multiply by −2 to get −2, add to 4 for 2, multiply for −4, add to −2 for −6, multiply for 12, add to 7 for 19 as remainder. Choice A correctly divides to get quotient x2+2x−6 and remainder 19 with deg(r) < deg(x+2). Choice B might stem from a sign error in the remainder, flipping 19 to −19. Before dividing, always check: can you factor the numerator and cancel with the denominator? The degree requirement (deg of remainder less than deg of divisor) tells you when to stop dividing: if dividing by (x+2) (degree 1), remainder must be degree 0 (constant). Question 7
Use polynomial division to rewrite x−22x3+x2−5x+3 in the form q(x)+x−2r(x), where deg(r)<1.
- 2x2+5x+5+x−213 (correct answer)
- 2x2+5x+5+x−2−13
- 2x2+x−3+x−29
- 2x2+5x+x−213
Explanation: This question tests your understanding of polynomial division—rewriting a rational expression as a polynomial quotient plus a proper fraction, just like rewriting 17/5 as 3+2/5. Polynomial long division works exactly like numerical long division: (1) divide the leading terms to get the first term of quotient, (2) multiply the entire divisor by that term, (3) subtract from the dividend, (4) repeat with what remains until the remainder's degree drops below the divisor's degree. Using synthetic division with root 2 for 2x3+x2−5x+3 divided by x−2, bring down 2, multiply by 2 for 4, add to 1 for 5, multiply by 2 for 10, add to -5 for 5, multiply by 2 for 10, add to 3 for 13, giving quotient 2x2+5x+5 and remainder 13. Choice A correctly divides to get quotient 2x2+5x+5 and remainder 13 with deg(r)<1. A distractor like choice B might flip the remainder sign from a subtraction error, but positive arithmetic checks out. Before dividing, always check: can you factor the numerator and cancel with the denominator? The degree requirement (deg of remainder less than deg of divisor) tells you when to stop dividing: if dividing by (x−2) (deg 1), remainder must be deg 0 (constant). Question 8
Rewrite x−3x3−5x+2 in the form q(x)+x−3r(x) using polynomial division, where deg(r)<1.
- x2+3x+4+x−314 (correct answer)
- x2+3x+4+x−3−14
- x2+3x−4+x−314
- x2+3x+4+x+314
Explanation: This question tests your understanding of polynomial division—rewriting a rational expression as a polynomial quotient plus a proper fraction, just like rewriting 17/5 as 3 + 2/5. Polynomial long division works exactly like numerical long division: (1) divide the leading terms to get the first term of quotient, (2) multiply the entire divisor by that term, (3) subtract from the dividend, (4) repeat with what remains until the remainder's degree drops below the divisor's degree. Let's divide (x³ - 5x + 2) by (x - 3), noting the missing x² term means coefficient 0: First, x³ ÷ x = x², multiply back: x²(x - 3) = x³ - 3x², subtract to get 3x² - 5x + 2. Next, 3x² ÷ x = 3x, multiply back: 3x(x - 3) = 3x² - 9x, subtract to get 4x + 2. Finally, 4x ÷ x = 4, multiply back: 4(x - 3) = 4x - 12, subtract to get 14. Choice A correctly shows quotient x² + 3x + 4 and remainder 14, giving us x² + 3x + 4 + 14/(x - 3). Choice B has remainder -14 instead of 14, likely from computing 2 - (-12) = 2 + 12 = 14 but then incorrectly negating it. Before dividing, always check: can you factor the numerator and cancel with the denominator? Here we can't simplify first, so long division is needed. Since we're dividing by (x - 3) with degree 1, remainder must have degree 0 (constant), which 14 is!
Question 9
When dividing a(x) by b(x), the division algorithm says b(x)a(x)=q(x)+b(x)r(x) where deg(r)<deg(b). For x2−3x+1x5+2x4−x3+4, what must be the degree of the remainder polynomial r(x)?
- deg(r)=2
- deg(r)≤1 (correct answer)
- deg(r)≤2
- deg(r)=3
Explanation: This question tests your understanding of polynomial division—rewriting a rational expression as a polynomial quotient plus a proper fraction, just like rewriting 17/5 as 3 + 2/5. The division algorithm for polynomials says any rational expression a(x)/b(x) can be written as q(x) + r(x)/b(x), where q(x) is the quotient (polynomial part) and r(x) is the remainder with degree strictly less than the divisor's degree. This separation shows the polynomial behavior (q(x)) separately from the fractional part (r(x)/b(x)), which approaches zero as x gets large. In this problem, we're dividing by b(x) = x² - 3x + 1, which has degree 2. The key constraint is deg(r) < deg(b) = 2, meaning the remainder must have degree less than 2. Choice B correctly states deg(r) ≤ 1, which means the remainder can be degree 1 (like 3x + 5) or degree 0 (like 7) or even the zero polynomial. Choice A incorrectly claims deg(r) = 2, but that would violate the fundamental requirement deg(r) < deg(b). The degree requirement (deg of remainder less than deg of divisor) tells you when to stop dividing: if dividing by a degree-2 polynomial, the remainder must be degree 1 or less. This is analogous to dividing integers: when dividing by 10, the remainder must be less than 10 (0 through 9)!
Question 10
Express x2+22x4−3x3+x2+4 as q(x)+x2+2r(x) using polynomial division, where deg(r)<2.
- 2x2−3x−3+x2+26x+10 (correct answer)
- 2x2−3x−3+x2−26x+10
- 2x2−3x−3+x2+26x2+10
- 2x2−3x+3+x2+26x+10
Explanation: This question tests your understanding of polynomial division—rewriting a rational expression as a polynomial quotient plus a proper fraction, just like rewriting 17/5 as 3 + 2/5. The division algorithm for polynomials says any rational expression a(x)/b(x) can be written as q(x) + r(x)/b(x), where q(x) is the quotient (polynomial part) and r(x) is the remainder with degree strictly less than the divisor's degree. Dividing (2x⁴ - 3x³ + x² + 4) by (x² + 2): First, 2x⁴ ÷ x² = 2x², multiply back: 2x²(x² + 2) = 2x⁴ + 4x², subtract to get -3x³ - 3x² + 4. Next, -3x³ ÷ x² = -3x, multiply back: -3x(x² + 2) = -3x³ - 6x, subtract to get -3x² + 6x + 4. Finally, -3x² ÷ x² = -3, multiply back: -3(x² + 2) = -3x² - 6, subtract to get 6x + 10. Choice A correctly shows quotient 2x² - 3x - 3 and remainder 6x + 10, giving us 2x² - 3x - 3 + (6x + 10)/(x² + 2). Choice C incorrectly suggests remainder 6x² + 10, but that would have degree 2, violating the requirement that deg(r) < 2 = deg(x² + 2). The degree requirement (deg of remainder less than deg of divisor) tells you when to stop dividing: since x² + 2 has degree 2, remainder must have degree at most 1. Our remainder 6x + 10 has degree 1, which is perfect!
Question 11
Rewrite x−1x3+2x2−5x+3 in the form q(x)+x−1r using the polynomial division algorithm, with deg(r)<deg(x−1).
- x2+3x−2+x−11 (correct answer)
- x2+x−4−x−11
- x2+3x−2−x−11
- x2+x−4+x−11
Explanation: This question tests your understanding of polynomial division—rewriting a rational expression as a polynomial quotient plus a proper fraction, just like rewriting 17/5 as 3 + 2/5. Polynomial long division works exactly like numerical long division: (1) divide the leading terms to get the first term of quotient, (2) multiply the entire divisor by that term, (3) subtract from the dividend, (4) repeat with what remains until the remainder's degree drops below the divisor's degree. Let's divide (x³ + 2x² - 5x + 3) by (x - 1): First, x³/x = x², multiply (x - 1) by x² to get x³ - x², subtract to get 3x² - 5x + 3. Next, 3x²/x = 3x, multiply (x - 1) by 3x to get 3x² - 3x, subtract to get -2x + 3. Then, -2x/x = -2, multiply (x - 1) by -2 to get -2x + 2, subtract to get 1. Since 1 has degree 0 < degree 1 of (x - 1), we stop! Choice A correctly gives quotient x² + 3x - 2 and remainder 1, written as x² + 3x - 2 + 1/(x - 1). Choice C has the wrong sign on the remainder fraction, while B and D have incorrect quotients from calculation errors. The degree requirement (deg of remainder less than deg of divisor) tells you when to stop dividing: once your remainder (1) has degree 0, which is less than the divisor's degree 1, you're done—stop dividing!
Question 12
Use polynomial division to write x−1x4+1 in the form q(x)+x−1r(x), where deg(r)<deg(x−1).
- x3+x2+x+1+x−12 (correct answer)
- x3+x2+x+1+x−10
- x3−x2+x−1+x−12
- x3+x2+x+1+x−12x
Explanation: This question tests your understanding of polynomial division—rewriting a rational expression as a polynomial quotient plus a proper fraction, just like rewriting 17/5 as 3 + 2/5. Polynomial long division works exactly like numerical long division: (1) divide the leading terms to get the first term of quotient, (2) multiply the entire divisor by that term, (3) subtract from the dividend, (4) repeat with what remains until the remainder's degree drops below the divisor's degree. For x⁴ + 1 divided by x - 1, synthetic or long division yields x³ + x² + x + 1 with remainder 2. Choice A correctly captures this, with deg(r) < 1. Choice B incorrectly claims zero remainder. Use the degree constraint to confirm stopping at a constant remainder.
Question 13
Use polynomial division to express x2+12x3−x2+0x+3 in the form q(x)+x2+1r(x), where deg(r)<2.
- 2x−1+x2+1−2x+4 (correct answer)
- 2x−1+x2−1−2x+4
- 2x+1+x2+1−2x+4
- 2x−1+x2+1−2x2+4
Explanation: This question tests your understanding of polynomial division—rewriting a rational expression as a polynomial quotient plus a proper fraction, just like rewriting 17/5 as 3 + 2/5. Polynomial long division works exactly like numerical long division: (1) divide the leading terms to get the first term of quotient, (2) multiply the entire divisor by that term, (3) subtract from the dividend, (4) repeat with what remains until the remainder's degree drops below the divisor's degree. For 2x³ - x² + 3 divided by x² + 1, the process results in 2x - 1 with remainder -2x + 4. Choice A correctly identifies this quotient and remainder, with deg(r) < 2. Choice D has an invalid remainder degree, equaling the divisor's. The degree requirement ensures you stop once the remainder is linear or constant for a quadratic divisor.
Question 14
When x2−2x+12x4−3x3+x2−x+5 is written in the form q(x)+x2−2x+1r(x), what is the degree of q(x)⋅r(x)?
- 2
- 3 (correct answer)
- 4
- 5
Explanation: The dividend has degree 4 and divisor has degree 2, so q(x) has degree 4−2=2. Since the divisor has degree 2, the remainder r(x) must have degree less than 2, so degree 1. Therefore, q(x)⋅r(x) has degree 2+1=3. Note that x2−2x+1=(x−1)2, but this doesn't change the degree analysis. Choice A assumes r(x) has degree 0. Choice C incorrectly uses the original dividend degree. Choice D adds degrees instead of using polynomial division rules. Question 15
Rewrite x+2x2+5x+7 in the form q(x)+x+2r(x), where deg(r)<deg(x+2). (Inspection is allowed.)
- x+3+x+21 (correct answer)
- x+2+x+23
- x+3+x−21
- x+3+x+2x+1
Explanation: This question tests your understanding of polynomial division—rewriting a rational expression as a polynomial quotient plus a proper fraction, just like rewriting 17/5 as 3+2/5. The division algorithm for polynomials says any rational expression a(x)/b(x) can be written as q(x)+r(x)/b(x), where q(x) is the quotient (polynomial part) and r(x) is the remainder with degree strictly less than the divisor's degree. Inspecting or dividing x2+5x+7 by x+2 gives x+3 with remainder 1. Choice A correctly provides this form, meeting the degree condition. Choice B might stem from a miscalculation in the constant term. Before dividing, check for simplification, and remember the remainder must be constant for linear divisors. Question 16
Use polynomial long division (or inspection) to rewrite the rational expression x−22x3+3x2−5x+7 in the form q(x)+x−2r(x), where deg(r)<deg(x−2).
- 2x2−x−7+x−221
- 2x2+7x+x−29x+25
- 2x2+7x+9+x−225 (correct answer)
- 2x2+7x+9+x−25
Explanation: This question tests your understanding of polynomial division—rewriting a rational expression as a polynomial quotient plus a proper fraction, just like rewriting 17/5 as 3 + 2/5. The division algorithm for polynomials says any rational expression a(x)/b(x) can be written as q(x) + r(x)/b(x), where q(x) is the quotient (polynomial part) and r(x) is the remainder with degree strictly less than the divisor's degree. Let's divide 2x³ + 3x² - 5x + 7 by x - 2: First, 2x³ ÷ x = 2x², multiply back: 2x²(x - 2) = 2x³ - 4x², subtract: (2x³ + 3x² - 5x + 7) - (2x³ - 4x²) = 7x² - 5x + 7. Next, 7x² ÷ x = 7x, multiply back: 7x(x - 2) = 7x² - 14x, subtract: (7x² - 5x + 7) - (7x² - 14x) = 9x + 7. Finally, 9x ÷ x = 9, multiply back: 9(x - 2) = 9x - 18, subtract: (9x + 7) - (9x - 18) = 25. Choice A correctly gives quotient 2x² + 7x + 9 and remainder 25, with deg(25) = 0 < deg(x - 2) = 1. Choice B has the wrong remainder (5 instead of 25), likely from an arithmetic error in the final subtraction. Before dividing, always check: can you factor the numerator and cancel with the denominator? Here, no obvious factorization exists, so long division is necessary. The degree requirement tells you when to stop: since we're dividing by (x - 2) which has degree 1, we stop when the remainder is a constant (degree 0).
Question 17
Use polynomial division to rewrite the rational expression x+22x3+3x2−5x+7 in the form q(x)+x+2r(x), where deg(r)<deg(x+2).
- 2x2−x−3+x+213 (correct answer)
- 2x2−x−3+x+21
- 2x2−x+1+x+213
- 2x2−x−3+x+213x
Explanation: This question tests your understanding of polynomial division—rewriting a rational expression as a polynomial quotient plus a proper fraction, just like rewriting 17/5 as 3+2/5. The division algorithm for polynomials says any rational expression a(x)/b(x) can be written as q(x)+b(x)r(x), where q(x) is the quotient (polynomial part) and r(x) is the remainder with degree strictly less than the divisor's degree. To divide 2x3+3x2−5x+7 by x+2, start by dividing 2x3 by x to get 2x2, multiply by the divisor to get 2x3+4x2, subtract to yield −x2−5x, then continue to get −x and −3, resulting in a remainder of 13. Choice A correctly divides to get quotient 2x2−x−3 and remainder 13, with deg(r)<deg(x+2). A common mistake, like in choice B, is miscalculating the remainder as 1 instead of 13 due to an arithmetic error in the final subtraction. Before dividing, always check if you can factor the numerator and cancel with the denominator, but here no common factors exist, so long division is necessary. The degree requirement ensures the remainder is proper, stopping when deg(remainder)<deg(divisor), just like stopping in numerical division when the remainder is smaller than the divisor. Question 18
Use polynomial division to rewrite the rational expression x−22x3+3x2−5x+6 in the form q(x)+x−2r(x), where deg(r)<deg(x−2) (the polynomial division algorithm).
- 2x2+7x+9+x−224 (correct answer)
- 2x2+7x+9+x−212
- 2x2+7x+9+x+224
- 2x2+7x+x−224x
Explanation: This question tests your understanding of polynomial division—rewriting a rational expression as a polynomial quotient plus a proper fraction, just like rewriting 17/5 as 3 + 2/5. The division algorithm for polynomials says any rational expression a(x)/b(x) can be written as q(x) + r(x)/b(x), where q(x) is the quotient (polynomial part) and r(x) is the remainder with degree strictly less than the divisor's degree. Let's divide (2x³ + 3x² - 5x + 6) by (x - 2): First, 2x³ ÷ x = 2x², multiply back: 2x²(x - 2) = 2x³ - 4x², subtract to get 7x² - 5x + 6. Next, 7x² ÷ x = 7x, multiply back: 7x(x - 2) = 7x² - 14x, subtract to get 9x + 6. Finally, 9x ÷ x = 9, multiply back: 9(x - 2) = 9x - 18, subtract to get 24. Choice A correctly shows quotient 2x² + 7x + 9 and remainder 24, giving us 2x² + 7x + 9 + 24/(x - 2). Choice B has the wrong remainder (12 instead of 24), likely from an arithmetic error in the final subtraction step. Before dividing, always check: can you factor the numerator and cancel with the denominator? Here we can't simplify first, so long division is necessary. The degree requirement tells you when to stop: since we're dividing by (x - 2) which has degree 1, our remainder must have degree 0 (a constant), which 24 is!
Question 19
Find the quotient q(x) and remainder r(x) when dividing x3+4x2−2x+7 by x+2, and write x+2x3+4x2−2x+7=q(x)+x+2r with deg(r)<deg(x+2).
- x2+2x−6+x+219 (correct answer)
- x2+2x−6−x+219
- x2+6x−14+x+235
- x2+2x+6+x+2−5
Explanation: This question tests your understanding of polynomial division—rewriting a rational expression as a polynomial quotient plus a proper fraction, just like rewriting 17/5 as 3 + 2/5. Polynomial long division works exactly like numerical long division: (1) divide the leading terms to get the first term of quotient, (2) multiply the entire divisor by that term, (3) subtract from the dividend, (4) repeat with what remains until the remainder's degree drops below the divisor's degree. Let's divide (x³ + 4x² - 2x + 7) by (x + 2): First, x³/x = x², multiply (x + 2) by x² to get x³ + 2x², subtract to get 2x² - 2x + 7. Next, 2x²/x = 2x, multiply (x + 2) by 2x to get 2x² + 4x, subtract to get -6x + 7. Then, -6x/x = -6, multiply (x + 2) by -6 to get -6x - 12, subtract to get 19. Since 19 has degree 0 < degree 1 of (x + 2), we stop! Choice A correctly gives quotient x² + 2x - 6 and remainder 19, written as x² + 2x - 6 + 19/(x + 2). Choice B has the wrong sign on the remainder fraction, C has an incorrect quotient from arithmetic errors, and D has both wrong quotient and remainder. The degree requirement tells you when to stop: once your remainder (19) has degree 0, which is less than the divisor's degree 1, you're done—continuing would be like dividing 2 by 5 further after getting 0 remainder 2!
Question 20
Divide x3−1 by x−1 and express x−1x3−1 in the form q(x)+x−1r, where deg(r)<deg(x−1).
- x2+x+1+x−10 (correct answer)
- x2−x+1+x−10
- x2+x+1+x−11
- x2+x+x−11
Explanation: This question tests your understanding of polynomial division—rewriting a rational expression as a polynomial quotient plus a proper fraction, just like rewriting 17/5 as 3 + 2/5. The division algorithm for polynomials says any rational expression a(x)/b(x) can be written as q(x) + r(x)/b(x), where q(x) is the quotient (polynomial part) and r(x) is the remainder with degree strictly less than the divisor's degree. Before dividing, let's check if we can factor: x³ - 1 = (x - 1)(x² + x + 1) by the difference of cubes formula! So (x³ - 1)/(x - 1) = (x - 1)(x² + x + 1)/(x - 1) = x² + x + 1 after canceling. This means the quotient is x² + x + 1 with remainder 0. Choice A correctly gives x² + x + 1 + 0/(x - 1), which simplifies to just x² + x + 1. Choice B has the wrong middle coefficient, C adds an unnecessary remainder of 1, and D is missing the constant term in the quotient. Before dividing, always check: can you factor the numerator and cancel with the denominator? Recognizing x³ - 1 as a difference of cubes that factors as (x - 1)(x² + x + 1) gives you the answer instantly without any division work!