No history yet

Quadratic Fundamentals and Factoring

The Anatomy of a Quadratic

You're already familiar with linear equations, which draw straight lines. Quadratic equations are the next step up, creating the elegant curve of a parabola. Their defining feature is a variable raised to the power of two. Every quadratic equation can be arranged into a standard form that provides a clear starting point for solving it.

ax2+bx+c=0ax^2 + bx + c = 0

Getting an equation into this form is always your first move. For example, if you're faced with 3x10=x23x - 10 = -x^2, you'd rearrange it by moving all terms to one side to get x2+3x10=0x^2 + 3x - 10 = 0. Now it's in standard form, with a=1a=1, b=3b=3, and c=10c=-10.

The Zero Product Property

The secret to solving many quadratics lies in a simple but powerful piece of logic: the Zero Product Property. It states that if the product of two or more numbers is zero, then at least one of those numbers must be zero.

If A×B=0A \times B = 0, then either A=0A=0 or B=0B=0 (or both).

This property is the entire foundation of solving by factoring. By breaking a quadratic expression into a product of two smaller expressions (its factors), we can turn one complicated problem into two simple ones. If we can get our equation into the form (xp)(xq)=0(x - p)(x - q) = 0, we know that either (xp)=0(x - p) = 0 or (xq)=0(x - q) = 0. The solutions, or , are then simply x=px=p and x=qx=q.

Advanced Factoring Techniques

Factoring is often the quickest way to solve a quadratic equation, especially when the roots are integers or simple fractions. While you might be used to factoring trinomials where a=1a=1, things get more interesting when aa is another number.

Let's solve $2x^2 - 5x - 3 = 0$ using the grouping method.

The goal is to find two numbers that multiply to the product of aa and cc, and add up to bb.

  1. Identify a, b, and c: Here, a=2a=2, b=5b=-5, and c=3c=-3.
  2. Find the product ac: 2×(3)=62 \times (-3) = -6.
  3. Find two numbers: We need two numbers that multiply to -6 and add to -5. After a little thought, we find -6 and 1 work perfectly. (6×1=6(-6 \times 1 = -6 and 6+1=5)-6 + 1 = -5).
  4. Split the middle term: Rewrite the 5x-5x term using -6 and 1: 2x26x+1x3=02x^2 - 6x + 1x - 3 = 0.
  5. Factor by grouping: Group the first two terms and the last two terms. Find the greatest common factor for each pair. (2x26x)+(x3)=0(2x^2 - 6x) + (x - 3) = 0 2x(x3)+1(x3)=02x(x - 3) + 1(x - 3) = 0
  6. Extract the common factor: Notice that (x3)(x-3) is a common factor in both terms. Factor it out. (2x+1)(x3)=0(2x + 1)(x - 3) = 0
  7. Apply the Zero Product Property: Now, set each factor to zero and solve. 2x+1=0    x=1/22x + 1 = 0 \implies x = -1/2 x3=0    x=3x - 3 = 0 \implies x = 3 The solutions are x=1/2x = -1/2 and x=3x = 3.

Another powerful pattern to recognise is the This occurs when you have one squared term subtracted from another.

A2B2=(AB)(A+B)A^2 - B^2 = (A - B)(A + B)

For example, to solve 4x225=04x^2 - 25 = 0, we can see that 4x24x^2 is (2x)2(2x)^2 and 2525 is 525^2. So, we have a difference of squares.

Applying the pattern: (2x5)(2x+5)=0(2x - 5)(2x + 5) = 0

Now we solve for each factor: 2x5=0    x=5/22x - 5 = 0 \implies x = 5/2 2x+5=0    x=5/22x + 5 = 0 \implies x = -5/2

Recognising this pattern allows you to bypass other methods and solve the equation much faster.

Factoring in the Real World

Solving for the roots of a quadratic equation is a fundamental task in many fields. In physics, it can tell you when a thrown projectile will hit the ground. In business, it can help find break-even points where profit is zero. These 'zeros' of the function are critical points of interest.

A company's daily profit is modelled by the function P(x)=x2+100x2400P(x) = -x^2 + 100x - 2400, where xx is the number of units sold. Find the break-even points.

Break-even occurs when profit is zero, so we set P(x)=0P(x) = 0. x2+100x2400=0-x^2 + 100x - 2400 = 0

To make factoring easier, let's multiply the entire equation by -1 to make the aa term positive: x2100x+2400=0x^2 - 100x + 2400 = 0

Now we need two numbers that multiply to 2400 and add to -100. This looks tricky, but we can think about factors of 240. The numbers -60 and -40 fit the bill. So, the numbers for 2400 are -60 and -40.

(x60)(x40)=0(x - 60)(x - 40) = 0

The break-even points are at x=40x=40 and x=60x=60. The company makes no profit if it sells 40 or 60 units. This tells the business its profitable range of production is between these two numbers.

Transitioning from linear to quadratic equations opens up a new dimension of problem-solving. By mastering standard form and factoring, you gain a swift and effective tool for finding the crucial points where functions intersect the real world.