Quadratic Calculator
Solve quadratic equations ax² + bx + c = 0
How to Use the Quadratic Equation Calculator
- Enter the coefficients a, b, and c for your quadratic equation ax² + bx + c = 0
- Note that coefficient 'a' cannot be zero (otherwise it's not quadratic)
- Use the example buttons to try different types of quadratic equations
- View the live equation display to see your equation formatted properly
- Check the discriminant to understand what type of solutions to expect
- Review the step-by-step solution to understand the solving process
- Examine the vertex and axis of symmetry for graphical understanding
Understanding Quadratic Equations
A quadratic equation is a polynomial equation of degree 2, written in the standard form ax² + bx + c = 0, where a ≠ 0.
Coefficient 'a'
The coefficient of x². Determines if the parabola opens upward (a > 0) or downward (a < 0).
Importance: Cannot be zero. Larger |a| makes the parabola narrower.
Coefficient 'b'
The coefficient of x. Affects the horizontal position of the vertex and axis of symmetry.
Importance: Can be zero. Combined with 'a', determines the vertex x-coordinate: x = -b/(2a).
Coefficient 'c'
The constant term. Represents the y-intercept of the parabola (where it crosses the y-axis).
Importance: Can be zero. The point (0, c) is where the parabola intersects the y-axis.
The Quadratic Formula
The quadratic formula is a universal method for solving any quadratic equation ax² + bx + c = 0.
Δ = b² - 4ac
x = (-b ± √(b² - 4ac)) / (2a)
Discriminant: Δ = b² - 4ac
The discriminant (Δ) determines the nature and number of solutions
-b
Negative of coefficient b
Purpose: Centers the solutions around the axis of symmetry
±√Δ
Plus/minus the square root of the discriminant
Purpose: Determines how far the solutions are from the center
2a
Twice the leading coefficient
Purpose: Scales the solutions based on parabola width
Understanding the Discriminant
The discriminant Δ = b² - 4ac tells us about the nature of solutions before we calculate them.
Δ > 0
Result: Two distinct real solutions
The parabola crosses the x-axis at two points. The solutions are real numbers.
Example: x² - 5x + 6 = 0 has Δ = 25 - 24 = 1 > 0, so two real solutions exist.
Graphically: Parabola intersects x-axis twice
Δ = 0
Result: One repeated real solution
The parabola touches the x-axis at exactly one point (vertex on x-axis).
Example: x² - 4x + 4 = 0 has Δ = 16 - 16 = 0, so one repeated solution x = 2.
Graphically: Parabola touches x-axis at vertex
Δ < 0
Result: Two complex solutions
The parabola doesn't cross the x-axis. Solutions involve imaginary numbers.
Example: x² + 2x + 5 = 0 has Δ = 4 - 20 = -16 < 0, so complex solutions exist.
Graphically: Parabola doesn't intersect x-axis
Methods for Solving Quadratic Equations
Quadratic Formula
When to use: Always works for any quadratic equation
Steps:
- Identify a, b, c
- Calculate discriminant Δ = b² - 4ac
- Apply formula x = (-b ± √Δ)/(2a)
Advantages: Universal method, shows discriminant
Disadvantages: Can involve complex arithmetic
Factoring
When to use: When equation can be factored easily
Steps:
- Factor ax² + bx + c into (px + q)(rx + s)
- Set each factor to zero
- Solve px + q = 0 and rx + s = 0
Advantages: Quick when factoring is obvious
Disadvantages: Not all quadratics factor nicely
Completing the Square
When to use: When converting to vertex form or quadratic formula derivation
Steps:
- Rearrange to x² + (b/a)x = -c/a
- Add (b/2a)² to both sides
- Factor left side as perfect square
Advantages: Shows vertex form, good for understanding
Disadvantages: More steps than quadratic formula
Graphing
When to use: For visual understanding or approximate solutions
Steps:
- Plot the parabola y = ax² + bx + c
- Find x-intercepts where y = 0
- Read solutions from graph
Advantages: Visual, shows all properties
Disadvantages: May not give exact values
Real-World Applications of Quadratic Equations
Physics - Projectile Motion
Height of thrown objects follows quadratic equations
Equation: h(t) = -16t² + v₀t + h₀
Variables: h = height, t = time, v₀ = initial velocity, h₀ = initial height
Problem: When does the projectile hit the ground? (solve for t when h = 0)
Business - Profit Optimization
Revenue and profit often follow quadratic models
Equation: P(x) = -ax² + bx - c
Variables: P = profit, x = quantity sold, coefficients depend on costs
Problem: Find quantity that maximizes profit (vertex of parabola)
Engineering - Bridge Design
Parabolic arches distribute weight efficiently
Equation: y = ax² + bx + c
Variables: Describes the curve of suspension bridge cables
Problem: Design cable shape for optimal load distribution
Agriculture - Area Optimization
Maximizing area with fixed perimeter
Equation: A = x(P - 2x)/2 = -x² + (P/2)x
Variables: A = area, x = width, P = available fencing
Problem: Find dimensions that maximize enclosed area
Technology - Signal Processing
Quadratic equations in digital filters and antenna design
Equation: Various forms depending on application
Variables: Frequency response, signal strength, timing
Problem: Optimize signal quality and minimize interference
Medicine - Drug Concentration
Drug levels in bloodstream over time
Equation: C(t) = -at² + bt + c
Variables: C = concentration, t = time after administration
Problem: Determine optimal dosing intervals
Common Mistakes When Solving Quadratics
MISTAKE: Forgetting the ± in quadratic formula
Problem: Only finding one solution when two exist
Solution: Always include both + and - when discriminant > 0
Example: For x² - 5x + 6 = 0, both x = 2 and x = 3 are solutions
MISTAKE: Setting a = 0
Problem: Equation becomes linear, not quadratic
Solution: Ensure coefficient of x² is non-zero for quadratic equations
Example: 0x² + 3x + 2 = 0 is actually 3x + 2 = 0, a linear equation
MISTAKE: Arithmetic errors with negative numbers
Problem: Sign errors when calculating discriminant or applying formula
Solution: Carefully track negative signs, especially with b² and -4ac
Example: For x² - 6x + 9, discriminant is (-6)² - 4(1)(9) = 36 - 36 = 0
MISTAKE: Misinterpreting complex solutions
Problem: Thinking equation has no solutions when discriminant < 0
Solution: Complex solutions are valid in mathematics, just not real numbers
Example: x² + 1 = 0 has solutions x = ±i, which are complex numbers
MISTAKE: Incorrect order of operations
Problem: Computing discriminant incorrectly
Solution: Remember b² - 4ac: square b first, then subtract 4ac
Example: For 2x² + 3x + 1, discriminant is 3² - 4(2)(1) = 9 - 8 = 1
MISTAKE: Rounding too early
Problem: Accumulated rounding errors in multi-step calculations
Solution: Keep full precision until final answer, then round appropriately
Example: Use full discriminant value in quadratic formula, not rounded version
Special Cases and Patterns
Perfect Square Trinomials
Form: a²x² ± 2abx + b² = (ax ± b)²
Example: x² - 6x + 9 = (x - 3)²
Solution: One repeated root: x = 3
Recognition: Discriminant equals zero
Difference of Squares
Form: a²x² - b² = (ax - b)(ax + b)
Example: x² - 16 = (x - 4)(x + 4)
Solution: Two opposite roots: x = ±4
Recognition: No linear term (b = 0), negative constant
Missing Linear Term
Form: ax² + c = 0
Example: 2x² - 8 = 0
Solution: x² = 4, so x = ±2
Recognition: Only x² and constant terms present
Missing Constant Term
Form: ax² + bx = 0 = x(ax + b)
Example: 3x² - 6x = 0 = 3x(x - 2)
Solution: x = 0 or x = 2
Recognition: Factor out x first
Quadratic Equation FAQ
What makes an equation quadratic?
An equation is quadratic if the highest power of the variable is 2, and the coefficient of x² is not zero. It must be in the form ax² + bx + c = 0.
Can a quadratic equation have no solutions?
Quadratic equations always have exactly 2 solutions, but they may be complex numbers when the discriminant is negative. In real numbers, there are no solutions when Δ < 0.
Why do we sometimes get one solution instead of two?
When discriminant = 0, we get one repeated solution (called a double root). Mathematically, it's still two solutions that happen to be equal.
What does the discriminant tell us?
The discriminant (b² - 4ac) determines solution types: positive = two real solutions, zero = one repeated solution, negative = two complex solutions.
How do I know which method to use?
The quadratic formula always works. Use factoring if the equation factors easily. Use completing the square for understanding or converting to vertex form.
What if my coefficient 'a' is negative?
No problem! The quadratic formula handles negative coefficients. Just be careful with signs when calculating the discriminant and applying the formula.
Can I solve quadratics without the quadratic formula?
Yes! You can factor (when possible), complete the square, or graph. However, the quadratic formula is the most reliable universal method.
What are complex solutions used for?
Complex solutions appear in engineering, physics, and advanced mathematics. They represent important mathematical relationships even when not 'real' in everyday sense.
Complete Tool Directory
All 71 tools available on UNITS