Quadratic Equations in Real and Complex Systems

Understanding Quadratic Equations

A quadratic equation is a polynomial equation of the second degree. The general form of a quadratic equation is given by:

ax2 + bx + c = 0

where 'a', 'b', and 'c' are coefficients, and 'x' is the variable. For a quadratic equation, the coefficient 'a' must not be zero (a ≠ 0). If a = 0, the equation reduces to a linear equation.

Coefficients and Variables

In the equation ax2 + bx + c = 0:

  • 'a' is the coefficient of the x2 term.
  • 'b' is the coefficient of the x term.
  • 'c' is the constant term.
  • 'x' is the variable we are solving for.

These coefficients (a, b, c) can be real numbers or complex numbers. The nature of the solutions (roots) depends heavily on the type of coefficients and the discriminant.

Solving Quadratic Equations: The Quadratic Formula

The most common and universal method to find the roots of a quadratic equation is using the quadratic formula. This formula works regardless of whether the coefficients are real or complex, and whether the roots are real or complex.

The quadratic formula is derived by completing the square for the general equation ax2 + bx + c = 0 and is given by:

x = -b ± √ (b2 - 4ac)

2a

The Discriminant (Δ)

The term inside the square root in the quadratic formula, b2 - 4ac, is called the discriminant, often denoted by the Greek letter delta (Δ).

Δ = b2 - 4ac

The discriminant plays a crucial role in determining the nature of the roots when the coefficients 'a', 'b', and 'c' are real numbers.

Nature of Roots for Real Coefficients

When 'a', 'b', and 'c' are real numbers, the nature of the roots can be predicted based on the value of the discriminant (Δ):

  • If Δ > 0: The equation has two distinct real roots. The values of the roots are (-b + √Δ) / 2a and (-b - √Δ) / 2a.
  • If Δ = 0: The equation has exactly one real root (or two equal real roots). The root is -b / 2a.
  • If Δ < 0: The equation has two distinct complex roots. These roots are complex conjugates of each other. The roots are (-b + i√|Δ|) / 2a and (-b - i√|Δ|) / 2a, where 'i' is the imaginary unit (√-1).

Example 1: Real Roots

Consider the equation x2 - 5x + 6 = 0.

Here, a = 1, b = -5, c = 6.

Calculate the discriminant: Δ = b2 - 4ac = (-5)2 - 4(1)(6) = 25 - 24 = 1.

Since Δ = 1 > 0, there are two distinct real roots.

Using the quadratic formula: x = -(-5) ± √1 = 5 ± 1

2(1) 2

The roots are x1 = (5 + 1) / 2 = 6 / 2 = 3, and x2 = (5 - 1) / 2 = 4 / 2 = 2.

Example 2: Equal Real Roots

Consider the equation x2 + 4x + 4 = 0.

Here, a = 1, b = 4, c = 4.

Calculate the discriminant: Δ = b2 - 4ac = (4)2 - 4(1)(4) = 16 - 16 = 0.

Since Δ = 0, there is one real root (or two equal real roots).

Using the quadratic formula: x = -4 ± √0 = -4 / 2 = -2.

2(1)

Example 3: Complex Roots

Consider the equation x2 + 2x + 5 = 0.

Here, a = 1, b = 2, c = 5.

Calculate the discriminant: Δ = b2 - 4ac = (2)2 - 4(1)(5) = 4 - 20 = -16.

Since Δ = -16 < 0, there are two distinct complex roots.

Using the quadratic formula: x = -2 ± √(-16) = -2 ± i√16 = -2 ± 4i

2(1) 2 2

The roots are x1 = (-2 + 4i) / 2 = -1 + 2i, and x2 = (-2 - 4i) / 2 = -1 - 2i.

Notice that the complex roots -1 + 2i and -1 - 2i are complex conjugates.

Quadratic Equations with Complex Coefficients

When the coefficients 'a', 'b', and 'c' are complex numbers, the concept of the discriminant (Δ = b2 - 4ac) still applies, and the quadratic formula x = [-b ± √(b2 - 4ac)] / 2a remains valid.

However, the interpretation of the discriminant's sign (positive, zero, negative) for predicting the nature of roots changes. When coefficients are complex, the roots can be any combination of real or complex numbers. The quadratic formula will always yield the correct roots, but we cannot use simple sign analysis of Δ to categorize them as easily as with real coefficients.

Solving for the Square Root of a Complex Number

When dealing with complex coefficients, the discriminant Δ = b2 - 4ac might itself be a complex number. Finding the square root of a complex number is a key step in applying the quadratic formula.

Let Δ = p + iq be a complex number. We want to find its square root, say u + iv, such that (u + iv)2 = p + iq.

(u + iv)2 = u2 - v2 + 2uvi.

Equating the real and imaginary parts:

u2 - v2 = p ...(1)

2uv = q ...(2)

We also know that |u + iv|2 = |p + iq|, which means u2 + v2 = √(p2 + q2) ...(3)

Adding (1) and (3): 2u2 = p + √(p2 + q2)

Therefore, u2 = [p + √(p2 + q2)] / 2

And u = ±√[ (p + √(p2 + q2)) / 2 ]

Subtracting (1) from (3): 2v2 = √(p2 + q2) - p

Therefore, v2 = [√(p2 + q2) - p] / 2

And v = ±√[ (√(p2 + q2) - p) / 2 ]

The signs of u and v are determined by equation (2): if q > 0, u and v have the same sign; if q < 0, u and v have opposite signs.

Example 4: Complex Coefficients and Roots

Consider the equation ix2 + (2+i)x + 1 = 0.

Here, a = i, b = 2+i, c = 1.

First, calculate the discriminant: Δ = b2 - 4ac

Δ = (2+i)2 - 4(i)(1)

Δ = (4 + 4i + i2) - 4i

Δ = (4 + 4i - 1) - 4i

Δ = 3 + 4i - 4i

Δ = 3

In this specific case, the discriminant turned out to be a real number. The roots are:

x = -(2+i) ± √3

2i

x1 = -2 - i + √3 = (√3 - 2) - i

2i 2i

To simplify, multiply numerator and denominator by -i (the conjugate of i divided by -1):

x1 = ((√3 - 2) - i) * (-i) = -(√3 - 2)i - i2 = -(√3 - 2)i + 1 = 1 + (2 - √3)i

2i * (-i) -2i2 2 2

x2 = -2 - i - √3 = -(2 + √3) - i

2i 2i

x2 = (-(2 + √3) - i) * (-i) = (2 + √3)i - i2 = (2 + √3)i + 1 = 1 - (2 + √3)i

2i * (-i) -2i2 2 2

The roots are complex, as expected.

Example 5: Complex Discriminant

Consider the equation x2 + ix + 2 = 0.

Here, a = 1, b = i, c = 2.

Calculate the discriminant: Δ = b2 - 4ac

Δ = (i)2 - 4(1)(2)

Δ = -1 - 8

Δ = -9

This is another case where Δ is real. The roots are:

x = -i ± √(-9)

2(1)

x = -i ± 3i

2

x1 = (-i + 3i) / 2 = 2i / 2 = i

x2 = (-i - 3i) / 2 = -4i / 2 = -2i

Both roots are purely imaginary.

Example 6: Another Complex Discriminant

Consider the equation x2 - (3+i)x + (2+i) = 0.

Here, a = 1, b = -(3+i), c = 2+i.

Calculate the discriminant: Δ = b2 - 4ac

Δ = (-(3+i))2 - 4(1)(2+i)

Δ = (3+i)2 - 8 - 4i

Δ = (9 + 6i + i2) - 8 - 4i

Δ = (9 + 6i - 1) - 8 - 4i

Δ = 8 + 6i - 8 - 4i

Δ = 2i

Now we need to find the square root of Δ = 2i. Let √ (2i) = u + iv.

(u + iv)2 = u2 - v2 + 2uvi = 2i.

Equating real and imaginary parts:

u2 - v2 = 0 ...(1)

2uv = 2 ...(2)

From (1), u2 = v2, so u = ±v.

From (2), uv = 1. This means u and v must have the same sign.

If u = v, then u * u = 1, so u2 = 1, which gives u = ±1.

If u = 1, then v = 1. So one square root is 1 + i.

If u = -1, then v = -1. So the other square root is -1 - i.

Thus, √ (2i) = ±(1+i).

Now, apply the quadratic formula:

x = -b ± √Δ

2a

x = (3+i) ± (1+i)

2

x1 = (3+i) + (1+i) = 4 + 2i = 2 + i

2 2

x2 = (3+i) - (1+i) = 3 + i - 1 - i = 2 = 1

2 2 2

The roots are 1 and 2+i.

Sum and Product of Roots

For any quadratic equation ax2 + bx + c = 0, regardless of whether the coefficients and roots are real or complex, the sum and product of the roots (let's call them α and β) are given by Vieta's formulas:

Sum of roots: α + β = -b/a

Product of roots: α * β = c/a

Let's verify this with Example 6:

Equation: x2 - (3+i)x + (2+i) = 0

a = 1, b = -(3+i), c = 2+i

Roots found: α = 1, β = 2+i

Sum of roots: α + β = 1 + (2+i) = 3+i.

From formula: -b/a = -(-(3+i))/1 = 3+i. (Matches)

Product of roots: α * β = 1 * (2+i) = 2+i.

From formula: c/a = (2+i)/1 = 2+i. (Matches)

Key Takeaway for JEE Main

The quadratic formula x = [-b ± √(b2 - 4ac)] / 2a is universally applicable for quadratic equations with real or complex coefficients.

When coefficients are real:

  • Δ > 0 ⇒ Two distinct real roots
  • Δ = 0 ⇒ One real root (repeated)
  • Δ < 0 ⇒ Two complex conjugate roots

When coefficients are complex:

  • The nature of roots cannot be simply determined by the sign of Δ.
  • The quadratic formula still works.
  • You must be able to calculate the square root of a complex number if the discriminant is complex.
  • Vieta's formulas (sum and product of roots) remain valid: α + β = -b/a, αβ = c/a.

Practice problems involving complex coefficients and complex discriminants are common in JEE Main.

Graphical Interpretation (for Real Coefficients)

When the coefficients 'a', 'b', and 'c' are real, the quadratic equation y = ax2 + bx + c represents a parabola.

  • The roots of the equation ax2 + bx + c = 0 correspond to the x-intercepts of the parabola (where y = 0).
  • If Δ > 0, the parabola intersects the x-axis at two distinct points.
  • If Δ = 0, the parabola touches the x-axis at exactly one point (the vertex is on the x-axis).
  • If Δ < 0, the parabola does not intersect the x-axis. If a > 0, the parabola is entirely above the x-axis. If a < 0, the parabola is entirely below the x-axis.

This graphical interpretation is specific to real coefficients and does not directly apply when coefficients are complex.

The Role of Complex Numbers

Complex numbers extend the number system, allowing us to find solutions for equations that have no real solutions. The Fundamental Theorem of Algebra states that a polynomial of degree 'n' has exactly 'n' roots in the complex number system, counting multiplicities. For quadratic equations (degree 2), this means there are always two roots in the complex number system.

Summary Table: Nature of Roots

Discriminant (Δ = b2 - 4ac) Nature of Roots (Real Coefficients) Nature of Roots (Complex Coefficients)
Δ > 0 Two distinct real roots Can be two distinct real, two distinct complex, or one repeated real/complex root (less common interpretation for Δ>0)
Δ = 0 One real root (repeated) One repeated real or complex root
Δ < 0 Two distinct complex conjugate roots Can be two distinct real, two distinct complex, or one repeated real/complex root (less common interpretation for Δ<0)

Note: For complex coefficients, the discriminant's sign does not directly dictate the nature of the roots in the same way as for real coefficients. The quadratic formula is the definitive tool.