Quadratic function and parabola (y=ax2+bx+cy = ax^2 + bx + c)

LVL: FREE

MODULE: Polynomials and Functions

[EXEC: MICRO_CORE]

✖️ 1. Identifying vertex, axis of symmetry, and intercepts of a parabola

🎯 Finding Key Points on a Parabola

  • The vertex is the highest or lowest point on the parabola.
  • Find the vertex x-coordinate using x=b2ax = -\frac{b}{2a}, then plug into the equation for y.
  • The axis of symmetry is the vertical line x=b2ax = -\frac{b}{2a} that splits the parabola in half.
  • The y-intercept is found by setting x=0x = 0, giving the point (0,c)(0, c).
  • The x-intercepts are found by solving ax2+bx+c=0ax^2 + bx + c = 0 using factoring or the quadratic formula.

For y=2x28x+6y = 2x^2 - 8x + 6: vertex x is 82(2)=2-\frac{-8}{2(2)} = 2, so vertex is (2,2)(2, -2); axis is x=2x = 2; y-intercept is (0,6)(0, 6).

💡 The vertex x-value is always halfway between the x-intercepts!

[EXEC: DEEP_COMPUTE]

1. Identifying vertex, axis of symmetry, and intercepts of a parabola

Identifying vertex, axis of symmetry, and intercepts of a parabola

A parabola defined by y=ax2+bx+cy = ax^2 + bx + c has three key features: the vertex (turning point), the axis of symmetry (vertical line through the vertex), and intercepts (where the graph crosses the axes). The vertex represents the minimum or maximum point of the function.

Intuition: The vertex is the "tip" of the parabola, the axis of symmetry divides it into mirror halves, and intercepts show where the parabola meets the coordinate axes.

Core Rules:

  • Vertex: Located at (b2a,f(b2a))\left(-\frac{b}{2a}, f\left(-\frac{b}{2a}\right)\right)
  • Axis of symmetry: Vertical line x=b2ax = -\frac{b}{2a}
  • Y-intercept: Point (0,c)(0, c) where the parabola crosses the y-axis
  • X-intercepts: Solutions to ax2+bx+c=0ax^2 + bx + c = 0 (may be 0, 1, or 2 real solutions)

Consequence: These features completely determine the parabola's position and shape in the coordinate plane.

Example: For y=2x24x+1y = 2x^2 - 4x + 1, the vertex is at x=42(2)=1x = -\frac{-4}{2(2)} = 1, giving vertex (1,1)(1, -1), axis x=1x = 1, y-intercept (0,1)(0, 1).

TASK_1[0 / 3]
LVL_2
STRC: TRANSFORM

Find the x-coordinate of the vertex for the parabola defined by y=2x28x+5y = 2x^2 - 8x + 5.

DEEP_COMPUTE
ULTRA
[EXEC: MICRO_CORE]

✖️ 2. The effect of coefficient 'a' on the parabola's direction and width (stretching)

🔄 How 'a' Controls the Parabola Shape

  • If a>0a > 0, the parabola opens upward (smiles).
  • If a<0a < 0, the parabola opens downward (frowns).
  • Larger values of a|a| make the parabola narrower (steeper sides).
  • Smaller values of a|a| (closer to zero) make the parabola wider (flatter).
  • The value of aa does NOT change the vertex location, only the shape.

Compare y=3x2y = 3x^2 (narrow, opens up) with y=0.5x2y = 0.5x^2 (wide, opens up) and y=2x2y = -2x^2 (narrow, opens down).

💡 Think of a|a| as the "squeeze factor" — bigger squeeze means narrower!

[EXEC: DEEP_COMPUTE]

2. The effect of coefficient 'a' on the parabola's direction and width (stretching)

The effect of coefficient 'a' on the parabola's direction and width (stretching)

The coefficient aa in y=ax2+bx+cy = ax^2 + bx + c controls two critical properties: the direction (opening upward or downward) and the width (how narrow or wide the parabola appears). The sign of aa determines concavity, while its absolute value controls vertical stretching.

Intuition: Think of aa as a "shape controller"—its sign flips the parabola, and its size squeezes or spreads it vertically.

Core Rules:

  • If a>0a > 0: Parabola opens upward (U-shape)
  • If a<0a < 0: Parabola opens downward (inverted U-shape)
  • If a>1|a| > 1: Parabola is narrower (vertical stretch)
  • If 0<a<10 < |a| < 1: Parabola is wider (vertical compression)

Consequence: Larger absolute values of aa make the parabola steeper, while values closer to zero make it flatter. The vertex location remains unaffected by aa alone.

Example: y=3x2y = 3x^2 is narrower and opens upward, while y=0.5x2y = -0.5x^2 is wider and opens downward.

TASK_1[0 / 3]
LVL_2
MOD: RELATE

Which of the following quadratic equations represents a parabola that opens downward?

DEEP_COMPUTE
ULTRA
SYSTEM_WARN: MCQ_OPTIONS_MISSING_IN_DB
[EXEC: MICRO_CORE]

✖️ 3. Converting between standard form and vertex form

🔀 Switching Between Two Forms

  • Standard form is y=ax2+bx+cy = ax^2 + bx + c.
  • Vertex form is y=a(xh)2+ky = a(x - h)^2 + k where (h,k)(h, k) is the vertex.
  • To go from standard to vertex: complete the square or use h=b2ah = -\frac{b}{2a} and find kk.
  • To go from vertex to standard: expand (xh)2(x - h)^2 and simplify.
  • Both forms have the same aa value (the leading coefficient stays unchanged).

Convert y=x2+6x+5y = x^2 + 6x + 5: vertex is (3,4)(-3, -4), so vertex form is y=(x+3)24y = (x + 3)^2 - 4.

💡 Vertex form instantly shows you the turning point; standard form shows the y-intercept!

[EXEC: DEEP_COMPUTE]

3. Converting between standard form and vertex form

Converting between standard form and vertex form

A quadratic function can be expressed in standard form y=ax2+bx+cy = ax^2 + bx + c or vertex form y=a(xh)2+ky = a(x - h)^2 + k, where (h,k)(h, k) is the vertex. Converting between forms reveals different structural information about the parabola.

Intuition: Standard form shows intercepts easily; vertex form immediately displays the vertex location and makes transformations transparent.

Core Rules:

  • Standard to vertex: Complete the square on ax2+bxax^2 + bx to obtain a(xh)2+ka(x - h)^2 + k
  • Vertex to standard: Expand a(xh)2+ka(x - h)^2 + k by distributing and combining like terms
  • Vertex coordinates: h=b2ah = -\frac{b}{2a} and k=cb24ak = c - \frac{b^2}{4a} from standard form
  • Both forms have the same coefficient aa

Consequence: Each form serves different purposes—vertex form for graphing transformations, standard form for finding intercepts algebraically.

Example: y=2x28x+5y = 2x^2 - 8x + 5 converts to y=2(x2)23y = 2(x - 2)^2 - 3 by completing the square, revealing vertex (2,3)(2, -3).

TASK_1[0 / 3]
LVL_3
STRC: TRANSFORM

Convert the vertex form equation y=3(x2)2+4y = 3(x - 2)^2 + 4 into standard form.

DEEP_COMPUTE
ULTRA
SYSTEM_WARN: MCQ_OPTIONS_MISSING_IN_DB
[EXEC: MICRO_CORE]

✖️ 4. Finding the maximum or minimum value of a quadratic function

📊 Locating the Extreme Value

  • If a>0a > 0, the parabola has a minimum value at the vertex.
  • If a<0a < 0, the parabola has a maximum value at the vertex.
  • The extreme value is the y-coordinate of the vertex, not the x-coordinate.
  • Calculate it using y=a(b2a)2+b(b2a)+cy = a\left(-\frac{b}{2a}\right)^2 + b\left(-\frac{b}{2a}\right) + c or use vertex form directly.
  • This value represents the lowest or highest output the function can produce.

For y=2x2+8x3y = -2x^2 + 8x - 3: vertex x is 22, so maximum value is 2(2)2+8(2)3=5-2(2)^2 + 8(2) - 3 = 5.

💡 The vertex y-value is always the answer for max/min problems!

[EXEC: DEEP_COMPUTE]

4. Finding the maximum or minimum value of a quadratic function

Finding the maximum or minimum value of a quadratic function

Every quadratic function y=ax2+bx+cy = ax^2 + bx + c has either a minimum value (if a>0a > 0) or a maximum value (if a<0a < 0) occurring at the vertex. This extreme value is the y-coordinate of the vertex.

Intuition: Since parabolas have a single turning point, the vertex represents the absolute highest or lowest output value the function can produce.

Core Rules:

  • If a>0a > 0: The function has a minimum value at the vertex
  • If a<0a < 0: The function has a maximum value at the vertex
  • Extreme value: yextreme=f(b2a)=cb24ay_{\text{extreme}} = f\left(-\frac{b}{2a}\right) = c - \frac{b^2}{4a}
  • In vertex form y=a(xh)2+ky = a(x - h)^2 + k, the extreme value is simply kk

Consequence: Optimization problems involving quadratic relationships reduce to finding the vertex's y-coordinate.

Example: For y=x2+6x5y = -x^2 + 6x - 5, since a=1<0a = -1 < 0, the maximum occurs at x=3x = 3, giving maximum value y=4y = 4.

TASK_1[0 / 3]
LVL_2
STRC: TRANSFORM

What is the minimum value of the quadratic function y=3(x4)2+7y = 3(x - 4)^2 + 7?

DEEP_COMPUTE
ULTRA
[EXEC: MICRO_CORE]

✖️ 5. Applications: Projectile motion paths in physics and maximizing profit curves in business

🚀 Real-World Parabolas

  • Projectile motion: height versus time follows h=at2+vt+h0h = -at^2 + vt + h_0 where aa relates to gravity.
  • The maximum height occurs at the vertex of this parabola.
  • Profit curves: profit P=ax2+bxcP = -ax^2 + bx - c models how profit changes with production quantity.
  • Maximum profit happens at the vertex x-value (optimal production level).
  • Both applications use the vertex to find the best outcome (highest point or most profit).

A ball thrown follows h=5t2+20t+2h = -5t^2 + 20t + 2; max height is at t=2t = 2 seconds, giving h=22h = 22 meters.

💡 Vertex = peak performance in physics and business!

[EXEC: DEEP_COMPUTE]

5. Applications: Projectile motion paths in physics and maximizing profit curves in business

Applications: Projectile motion paths in physics and maximizing profit curves in business

Quadratic functions model real-world phenomena where relationships involve squared terms. In projectile motion, the height h(t)=gt2+v0t+h0h(t) = -gt^2 + v_0t + h_0 traces a parabolic path under gravity. In business, profit functions P(x)=ax2+bxcP(x) = -ax^2 + bx - c often exhibit parabolic behavior due to diminishing returns.

Intuition: Parabolas naturally describe situations with acceleration (physics) or optimal points balancing competing factors (economics).

Core Rules:

  • Projectile motion: Maximum height occurs at the vertex; a<0a < 0 represents downward gravity
  • Business profit: Maximum profit occurs at the vertex when costs increase quadratically
  • Domain restrictions: Physical contexts often limit xx to non-negative values
  • The vertex provides the optimal solution (maximum height, maximum profit)

Consequence: Identifying the vertex directly solves optimization problems in these applied contexts.

Example: A ball's height h(t)=5t2+20t+2h(t) = -5t^2 + 20t + 2 reaches maximum height 22 meters at t=2t = 2 seconds.

TASK_1[0 / 3]
LVL_3
MOD: TRANSLATE

A toy rocket is launched into the air. Its height in meters after tt seconds is modeled by the function h(t)=5t2+40t+5h(t) = -5t^2 + 40t + 5.

Find the time tt in seconds when the rocket reaches its maximum height.

DEEP_COMPUTE
ULTRA

AWAITING_CONFIRMATION

CONFIRM KNOWLEDGE ACQUISITION TO UPDATE SYSTEM ANALYTICS.