How to Solve Quadratic Equation Word Problems
Solve quadratic equation word problems by translating scenarios to standard form, solving both roots, and filtering invalid answers.
Expected Interview Answer
Quadratic word problems are solved by translating the scenario into an equation of the form ax^2 + bx + c = 0, then solving via factoring, the quadratic formula x = (−b ± √(b^2−4ac)) / 2a, and rejecting any root that is not physically meaningful.
The hardest part is not the algebra but the translation: identify the unknown, write one equation expressing the given relationship (area, product of consecutive numbers, speed-distance-time with a variable rate), and expand it into standard quadratic form. Factoring works fast when the roots are integers; otherwise the quadratic formula always works, and the discriminant b^2−4ac tells you upfront whether real solutions even exist. Because a quadratic has two roots, always check both against the problem’s real-world constraints — a negative length, a negative age, or a speed of zero is usually invalid and must be discarded even though it is mathematically valid. Sanity-check the retained root by substituting it back into the original word statement, not just the equation.
- One standard form (ax²+bx+c=0) captures nearly every scenario
- The discriminant instantly signals if a solution exists
- Domain-checking both roots avoids reporting invalid answers
AI Mentor Explanation
A bowler’s economy problem — 'the product of two consecutive over counts needed to concede exactly 30 more runs than twice the overs' — translates into a quadratic in the over count, solved by expanding to standard form and factoring or using the quadratic formula. Two mathematical roots emerge, but only the positive whole-number one representing an actual over count is kept, discarding a negative root as cricket has no negative overs. This translate-then-filter process — write the equation, solve both roots, keep only the sensible one — is the entire skill behind quadratic word problems.
Worked example
Set up equation
- w(w+4) = 96
Expand and factor
- w²+4w−96=0
- (w−8)(w+12)=0
Keep valid root
- w=8 (w=−12 rejected)
- Length = 12
Step-by-Step Explanation
Step 1
Define the unknown
Assign a variable to the quantity the problem asks for.
Step 2
Translate to an equation
Convert the word relationship into ax² + bx + c = 0 form.
Step 3
Solve both roots
Factor if possible, otherwise use the quadratic formula.
Step 4
Filter by real-world validity
Discard any root that is negative, zero, or otherwise impossible in context.
What Interviewer Expects
- Correct translation of the word problem into standard quadratic form
- Fluency with both factoring and the quadratic formula
- Discarding roots that violate real-world constraints
- Verifying the retained root against the original word statement
Common Mistakes
- Reporting both roots without checking which is physically valid
- Expanding the word relationship into the wrong equation (sign or term errors)
- Forgetting to check the discriminant before assuming real roots exist
- Arithmetic slips when applying the quadratic formula
Best Answer (HR Friendly)
“My approach is to name the unknown, translate the sentence into an equation, and get it into standard ax squared plus bx plus c form. Then I solve by factoring when it’s clean, or the quadratic formula otherwise. Since a quadratic gives two roots, the last and most important step is checking both against the real scenario — a negative age, length, or count gets thrown out even though it’s a valid root of the equation.”
Follow-up Questions
- How does the discriminant tell you the number of real solutions before solving?
- How would you handle a word problem where both roots are valid?
- How do you set up a quadratic from a speed-distance-time scenario with two rates?
- What is the relationship between the sum/product of roots and the coefficients?
MCQ Practice
1. The product of two consecutive positive integers is 132. The integers are?
n(n+1)=132 → n²+n−132=0 → (n−11)(n+12)=0 → n=11, giving 11 and 12.
2. A rectangle has area 60 and length 4 more than width. The width is?
w(w+4)=60 → w²+4w−60=0 → (w−6)(w+10)=0 → w=6 (w=−10 rejected).
3. Which quadratic has roots 3 and −5?
Sum of roots = −2 = −b, product = −15 = c, giving x²+2x−15=0.
Flash Cards
Standard quadratic form? — ax² + bx + c = 0.
Quadratic formula? — x = (−b ± √(b²−4ac)) / 2a.
What does the discriminant tell you? — b²−4ac > 0 gives two real roots; = 0 gives one; < 0 gives none real.
Why check both roots in a word problem? — One root is often negative or otherwise physically invalid and must be discarded.