Algebra

Graphing Parabolas

Last updated: March 2026 · Intermediate
Before you start

You should be comfortable with:

Real-world applications
πŸ“
Carpentry

Measurements, material estimation, cutting calculations

🌑️
HVAC

Refrigerant charging, airflow, system sizing

A parabola is the U-shaped curve you get when you graph a quadratic function. Every equation of the form y=ax2+bx+cy = ax^2 + bx + c produces a parabola, and knowing how to sketch one quickly β€” without plotting dozens of points β€” is one of the most practical skills in Algebra 1. Once you can read a quadratic equation and identify its vertex, direction, intercepts, and axis of symmetry, you can visualize solutions to real-world problems from projectile paths to cost curves.

This page walks through each feature of a parabola systematically, with worked examples at every step.

Standard Form and Direction

The standard form of a quadratic function is:

y=ax2+bx+cy = ax^2 + bx + c

The coefficient aa controls two things:

  • Direction: If a>0a > 0, the parabola opens upward (a β€œvalley” shape). If a<0a < 0, it opens downward (a β€œhill” shape).
  • Width: A larger absolute value of aa makes the parabola narrower. A smaller absolute value makes it wider. For example, y=3x2y = 3x^2 is narrower than y=x2y = x^2, and y=0.5x2y = 0.5x^2 is wider.

The values bb and cc shift the curve left/right and up/down, but aa alone determines whether the parabola smiles or frowns.

Finding the Vertex

The vertex is the highest or lowest point on the parabola β€” the turning point where the curve changes direction. Its xx-coordinate is given by:

x=βˆ’b2ax = -\frac{b}{2a}

To find the yy-coordinate, substitute that xx-value back into the original equation.

Example 1: Find the vertex of y=2x2βˆ’8x+3y = 2x^2 - 8x + 3

Step 1 β€” Identify aa, bb, cc:

a=2,b=βˆ’8,c=3a = 2, \quad b = -8, \quad c = 3

Step 2 β€” Find the xx-coordinate of the vertex:

x=βˆ’βˆ’82(2)=84=2x = -\frac{-8}{2(2)} = \frac{8}{4} = 2

Step 3 β€” Find the yy-coordinate by substituting x=2x = 2:

y=2(2)2βˆ’8(2)+3=8βˆ’16+3=βˆ’5y = 2(2)^2 - 8(2) + 3 = 8 - 16 + 3 = -5

Vertex: (2,βˆ’5)(2, -5)

Since a=2>0a = 2 > 0, the parabola opens upward, so the vertex is the minimum point.

Example 2: Find the vertex of y=βˆ’x2+6xβˆ’4y = -x^2 + 6x - 4

a=βˆ’1,b=6,c=βˆ’4a = -1, \quad b = 6, \quad c = -4

x=βˆ’62(βˆ’1)=βˆ’6βˆ’2=3x = -\frac{6}{2(-1)} = -\frac{6}{-2} = 3

y=βˆ’(3)2+6(3)βˆ’4=βˆ’9+18βˆ’4=5y = -(3)^2 + 6(3) - 4 = -9 + 18 - 4 = 5

Vertex: (3,5)(3, 5)

Since a=βˆ’1<0a = -1 < 0, the parabola opens downward, so the vertex is the maximum point.

Axis of Symmetry

Every parabola is symmetric about a vertical line through its vertex. This line is the axis of symmetry:

x=βˆ’b2ax = -\frac{b}{2a}

It is the same formula you use for the vertex xx-coordinate. The axis of symmetry means that for every point on one side of the parabola, there is a mirror-image point on the other side at the same height. This is extremely useful: once you find a point to the left of the axis, you immediately know a point to the right (and vice versa).

For Example 1 above, the axis of symmetry is x=2x = 2. For Example 2, it is x=3x = 3.

Finding the Y-Intercept

The y-intercept is the point where the parabola crosses the yy-axis (where x=0x = 0). Substituting x=0x = 0 into y=ax2+bx+cy = ax^2 + bx + c gives:

y=a(0)2+b(0)+c=cy = a(0)^2 + b(0) + c = c

So the y-intercept is always the point (0,c)(0, c). This is the easiest point to find β€” just read cc from the equation.

For y=2x2βˆ’8x+3y = 2x^2 - 8x + 3, the y-intercept is (0,3)(0, 3).

Finding the X-Intercepts

The x-intercepts (also called roots or zeros) are where the parabola crosses the xx-axis (where y=0y = 0). Set the equation equal to zero and solve:

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

You can solve this by factoring, completing the square, or using the quadratic formula:

x=βˆ’bΒ±b2βˆ’4ac2ax = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a}

The discriminant Ξ”=b2βˆ’4ac\Delta = b^2 - 4ac tells you how many x-intercepts exist:

  • Ξ”>0\Delta > 0: Two x-intercepts (the parabola crosses the xx-axis twice)
  • Ξ”=0\Delta = 0: One x-intercept (the vertex touches the xx-axis)
  • Ξ”<0\Delta < 0: No real x-intercepts (the parabola floats entirely above or below the xx-axis)

Example 3: Find the x-intercepts of y=x2βˆ’5x+6y = x^2 - 5x + 6

Set y=0y = 0:

x2βˆ’5x+6=0x^2 - 5x + 6 = 0

Factor: (xβˆ’2)(xβˆ’3)=0(x - 2)(x - 3) = 0

x=2orx=3x = 2 \quad \text{or} \quad x = 3

X-intercepts: (2,0)(2, 0) and (3,0)(3, 0).

Example 4: Find the x-intercepts of y=2x2βˆ’8x+3y = 2x^2 - 8x + 3

Set y=0y = 0:

2x2βˆ’8x+3=02x^2 - 8x + 3 = 0

Using the quadratic formula with a=2a = 2, b=βˆ’8b = -8, c=3c = 3:

Ξ”=(βˆ’8)2βˆ’4(2)(3)=64βˆ’24=40\Delta = (-8)^2 - 4(2)(3) = 64 - 24 = 40

x=8Β±404=8Β±2104=4Β±102x = \frac{8 \pm \sqrt{40}}{4} = \frac{8 \pm 2\sqrt{10}}{4} = \frac{4 \pm \sqrt{10}}{2}

xβ‰ˆ4+3.1622β‰ˆ3.58orxβ‰ˆ4βˆ’3.1622β‰ˆ0.42x \approx \frac{4 + 3.162}{2} \approx 3.58 \quad \text{or} \quad x \approx \frac{4 - 3.162}{2} \approx 0.42

X-intercepts: approximately (0.42,0)(0.42, 0) and (3.58,0)(3.58, 0).

Plotting Key Points and Making a Table

With the vertex, intercepts, and axis of symmetry, you can sketch a parabola. For a more precise graph, build a short table of values by choosing xx-values on both sides of the vertex.

Example 5: Graph y=x2βˆ’4x+1y = x^2 - 4x + 1

Step 1 β€” Key features:

  • a=1a = 1, b=βˆ’4b = -4, c=1c = 1
  • Direction: opens upward (a>0a > 0)
  • Vertex xx-coordinate: x=βˆ’βˆ’42(1)=2x = -\frac{-4}{2(1)} = 2
  • Vertex yy-coordinate: y=(2)2βˆ’4(2)+1=4βˆ’8+1=βˆ’3y = (2)^2 - 4(2) + 1 = 4 - 8 + 1 = -3
  • Vertex: (2,βˆ’3)(2, -3)
  • Axis of symmetry: x=2x = 2
  • Y-intercept: (0,1)(0, 1)

Step 2 β€” Table of values:

xxy=x2βˆ’4x+1y = x^2 - 4x + 1
βˆ’1-11+4+1=61 + 4 + 1 = 6
000βˆ’0+1=10 - 0 + 1 = 1
111βˆ’4+1=βˆ’21 - 4 + 1 = -2
224βˆ’8+1=βˆ’34 - 8 + 1 = -3
339βˆ’12+1=βˆ’29 - 12 + 1 = -2
4416βˆ’16+1=116 - 16 + 1 = 1
5525βˆ’20+1=625 - 20 + 1 = 6

Notice the symmetry: y(βˆ’1)=y(5)=6y(-1) = y(5) = 6, y(0)=y(4)=1y(0) = y(4) = 1, and y(1)=y(3)=βˆ’2y(1) = y(3) = -2. Each pair is equidistant from the axis of symmetry at x=2x = 2.

Step 3 β€” Sketch: Plot the vertex at (2,βˆ’3)(2, -3), the y-intercept at (0,1)(0, 1), and the remaining points. Draw a smooth U-shaped curve through them.

Example 6: Graph y=βˆ’x2+2x+3y = -x^2 + 2x + 3

Step 1 β€” Key features:

  • a=βˆ’1a = -1, b=2b = 2, c=3c = 3
  • Direction: opens downward (a<0a < 0)
  • Vertex: x=βˆ’22(βˆ’1)=1x = -\frac{2}{2(-1)} = 1, y=βˆ’(1)2+2(1)+3=βˆ’1+2+3=4y = -(1)^2 + 2(1) + 3 = -1 + 2 + 3 = 4
  • Vertex: (1,4)(1, 4)
  • Axis of symmetry: x=1x = 1
  • Y-intercept: (0,3)(0, 3)

Step 2 β€” X-intercepts: Set βˆ’x2+2x+3=0-x^2 + 2x + 3 = 0, or equivalently x2βˆ’2xβˆ’3=0x^2 - 2x - 3 = 0.

Factor: (xβˆ’3)(x+1)=0(x - 3)(x + 1) = 0, so x=3x = 3 or x=βˆ’1x = -1.

X-intercepts: (βˆ’1,0)(-1, 0) and (3,0)(3, 0).

Step 3 β€” Table of values:

xxy=βˆ’x2+2x+3y = -x^2 + 2x + 3
βˆ’2-2βˆ’4βˆ’4+3=βˆ’5-4 - 4 + 3 = -5
βˆ’1-1βˆ’1βˆ’2+3=0-1 - 2 + 3 = 0
000+0+3=30 + 0 + 3 = 3
11βˆ’1+2+3=4-1 + 2 + 3 = 4
22βˆ’4+4+3=3-4 + 4 + 3 = 3
33βˆ’9+6+3=0-9 + 6 + 3 = 0
44βˆ’16+8+3=βˆ’5-16 + 8 + 3 = -5

Again, symmetry is evident around x=1x = 1. The curve reaches its maximum at the vertex (1,4)(1, 4) and passes through both x-intercepts.

The Complete Graphing Checklist

Every time you need to graph a parabola, run through these steps:

  1. Identify aa, bb, cc from standard form y=ax2+bx+cy = ax^2 + bx + c
  2. Determine direction: up if a>0a > 0, down if a<0a < 0
  3. Find the vertex: x=βˆ’b/(2a)x = -b/(2a), then compute yy
  4. Draw the axis of symmetry: the vertical line x=βˆ’b/(2a)x = -b/(2a)
  5. Find the y-intercept: the point (0,c)(0, c)
  6. Find the x-intercepts (if they exist): solve ax2+bx+c=0ax^2 + bx + c = 0
  7. Plot additional points using a table of values, leveraging symmetry
  8. Connect the points with a smooth curve

Real-World Application: HVAC β€” Modeling Airflow Efficiency

An HVAC technician is evaluating a duct fan whose efficiency (as a percentage) depends on the fan speed ss in hundreds of RPM:

E(s)=βˆ’2s2+16s+10E(s) = -2s^2 + 16s + 10

The technician wants to know the fan speed that gives maximum efficiency and what that maximum efficiency is.

Step 1 β€” Identify: a=βˆ’2a = -2, b=16b = 16, c=10c = 10. Since a<0a < 0, the parabola opens downward, confirming there is a maximum.

Step 2 β€” Find the vertex:

s=βˆ’162(βˆ’2)=βˆ’16βˆ’4=4s = -\frac{16}{2(-2)} = -\frac{16}{-4} = 4

E(4)=βˆ’2(16)+16(4)+10=βˆ’32+64+10=42E(4) = -2(16) + 16(4) + 10 = -32 + 64 + 10 = 42

Result: Maximum efficiency of 42% occurs at a fan speed of 400 RPM (since ss is in hundreds). Running the fan faster or slower than 400 RPM reduces efficiency. The technician can use this to set the optimal speed for the system.

Real-World Application: Carpentry β€” Arch Shape for a Garden Trellis

A carpenter is building a garden trellis with a parabolic arch. The arch needs to be 6 feet wide at the base and 4 feet tall at the center. Placing the origin at the left base of the arch, the arch must pass through (0,0)(0, 0), (3,4)(3, 4), and (6,0)(6, 0).

By symmetry, the vertex is at (3,4)(3, 4). The axis of symmetry is x=3x = 3. Since the arch passes through (0,0)(0, 0):

0=a(0)2+b(0)+cβ€…β€ŠβŸΉβ€…β€Šc=00 = a(0)^2 + b(0) + c \implies c = 0

And through (6,0)(6, 0):

0=36a+6b0 = 36a + 6b

And through (3,4)(3, 4):

4=9a+3b4 = 9a + 3b

From 0=36a+6b0 = 36a + 6b: b=βˆ’6ab = -6a. Substituting into the vertex equation:

4=9a+3(βˆ’6a)=9aβˆ’18a=βˆ’9aβ€…β€ŠβŸΉβ€…β€Ša=βˆ’494 = 9a + 3(-6a) = 9a - 18a = -9a \implies a = -\frac{4}{9}

b=βˆ’6(βˆ’49)=249=83b = -6\left(-\frac{4}{9}\right) = \frac{24}{9} = \frac{8}{3}

The equation is:

y=βˆ’49x2+83xy = -\frac{4}{9}x^2 + \frac{8}{3}x

The carpenter can now calculate the arch height at any horizontal position. For example, at x=1x = 1 foot from the left base:

y=βˆ’49(1)+83(1)=βˆ’49+249=209β‰ˆ2.22Β feety = -\frac{4}{9}(1) + \frac{8}{3}(1) = -\frac{4}{9} + \frac{24}{9} = \frac{20}{9} \approx 2.22 \text{ feet}

Common Mistakes to Avoid

  1. Sign error in the vertex formula. The formula is x=βˆ’b/(2a)x = -b/(2a). If bb is already negative (say b=βˆ’6b = -6), then βˆ’b=6-b = 6. Do not write βˆ’(βˆ’6)=βˆ’6-(-6) = -6.
  2. Forgetting that aa affects direction, not just width. Students sometimes graph an upward parabola when aa is negative.
  3. Assuming every parabola has x-intercepts. If the discriminant is negative, the parabola does not cross the xx-axis. That is not an error β€” it just means the vertex is entirely above (or below) the axis.
  4. Plotting only one side. The axis of symmetry guarantees mirror points. If you plot (0,3)(0, 3) and the axis is x=2x = 2, the mirror point is (4,3)(4, 3). Use this to save time and improve accuracy.
  5. Connecting points with straight lines. A parabola is a smooth curve, not a series of line segments. Draw it freehand (or use many points) to show the characteristic U shape.

Practice Problems

Test your understanding with these problems. Click to reveal each answer.

Problem 1: Find the vertex and direction of y=3x2+12x+7y = 3x^2 + 12x + 7.

a=3a = 3, b=12b = 12, c=7c = 7. Since a=3>0a = 3 > 0, the parabola opens upward.

x=βˆ’122(3)=βˆ’126=βˆ’2x = -\frac{12}{2(3)} = -\frac{12}{6} = -2

y=3(βˆ’2)2+12(βˆ’2)+7=12βˆ’24+7=βˆ’5y = 3(-2)^2 + 12(-2) + 7 = 12 - 24 + 7 = -5

Answer: Vertex (βˆ’2,βˆ’5)(-2, -5), opens upward.

Problem 2: Find the axis of symmetry and y-intercept of y=βˆ’2x2+10xβˆ’3y = -2x^2 + 10x - 3.

Axis of symmetry:

x=βˆ’102(βˆ’2)=βˆ’10βˆ’4=2.5x = -\frac{10}{2(-2)} = -\frac{10}{-4} = 2.5

Y-intercept: Set x=0x = 0: y=βˆ’3y = -3. The y-intercept is (0,βˆ’3)(0, -3).

Answer: Axis of symmetry is x=2.5x = 2.5; y-intercept is (0,βˆ’3)(0, -3).

Problem 3: Find the x-intercepts of y=x2+2xβˆ’8y = x^2 + 2x - 8.

Set y=0y = 0: x2+2xβˆ’8=0x^2 + 2x - 8 = 0

Factor: (x+4)(xβˆ’2)=0(x + 4)(x - 2) = 0

x=βˆ’4orx=2x = -4 \quad \text{or} \quad x = 2

Answer: X-intercepts are (βˆ’4,0)(-4, 0) and (2,0)(2, 0).

Problem 4: Does y=2x2βˆ’3x+5y = 2x^2 - 3x + 5 have any x-intercepts?

Compute the discriminant:

Ξ”=(βˆ’3)2βˆ’4(2)(5)=9βˆ’40=βˆ’31\Delta = (-3)^2 - 4(2)(5) = 9 - 40 = -31

Since Ξ”<0\Delta < 0, there are no real x-intercepts. The parabola opens upward (since a=2>0a = 2 > 0) and sits entirely above the xx-axis.

Answer: No, the parabola has no x-intercepts.

Problem 5: Complete a table of values for y=x2βˆ’6x+5y = x^2 - 6x + 5 using x=0,1,2,3,4,5,6x = 0, 1, 2, 3, 4, 5, 6 and identify the vertex.
xxyy
000βˆ’0+5=50 - 0 + 5 = 5
111βˆ’6+5=01 - 6 + 5 = 0
224βˆ’12+5=βˆ’34 - 12 + 5 = -3
339βˆ’18+5=βˆ’49 - 18 + 5 = -4
4416βˆ’24+5=βˆ’316 - 24 + 5 = -3
5525βˆ’30+5=025 - 30 + 5 = 0
6636βˆ’36+5=536 - 36 + 5 = 5

The vertex is the point with the smallest yy-value: (3,βˆ’4)(3, -4).

Verify: x=βˆ’b/(2a)=6/2=3x = -b/(2a) = 6/2 = 3 and y=9βˆ’18+5=βˆ’4y = 9 - 18 + 5 = -4. Confirmed.

Answer: Vertex is (3,βˆ’4)(3, -4). The table shows symmetry around x=3x = 3.

Problem 6: An HVAC system’s heat output HH (in BTUs) depends on the thermostat setting tt: H(t)=βˆ’5t2+300tβˆ’1000H(t) = -5t^2 + 300t - 1000. Find the setting that maximizes heat output.

Since a=βˆ’5<0a = -5 < 0, the parabola opens downward, so the vertex is the maximum.

t=βˆ’3002(βˆ’5)=βˆ’300βˆ’10=30t = -\frac{300}{2(-5)} = -\frac{300}{-10} = 30

H(30)=βˆ’5(900)+300(30)βˆ’1000=βˆ’4500+9000βˆ’1000=3500H(30) = -5(900) + 300(30) - 1000 = -4500 + 9000 - 1000 = 3500

Answer: A thermostat setting of t=30t = 30 maximizes heat output at 3,500 BTUs.

Problem 7: Graph y=βˆ’x2+4xy = -x^2 + 4x by finding the vertex, y-intercept, and x-intercepts.

Vertex: x=βˆ’4/(2β‹…βˆ’1)=2x = -4/(2 \cdot -1) = 2, y=βˆ’(4)+8=4y = -(4) + 8 = 4. Vertex: (2,4)(2, 4).

Y-intercept: (0,0)(0, 0).

X-intercepts: βˆ’x2+4x=0β€…β€ŠβŸΉβ€…β€Šβˆ’x(xβˆ’4)=0β€…β€ŠβŸΉβ€…β€Šx=0-x^2 + 4x = 0 \implies -x(x - 4) = 0 \implies x = 0 or x=4x = 4.

Direction: Opens downward (a=βˆ’1<0a = -1 < 0).

Answer: The parabola opens downward with vertex (2,4)(2, 4), passes through the origin (0,0)(0, 0), and crosses the xx-axis again at (4,0)(4, 0). The axis of symmetry is x=2x = 2.

Key Takeaways

  • A quadratic function y=ax2+bx+cy = ax^2 + bx + c always graphs as a parabola β€” upward if a>0a > 0, downward if a<0a < 0
  • The vertex is at x=βˆ’b/(2a)x = -b/(2a) β€” this is the minimum (opens up) or maximum (opens down)
  • The axis of symmetry is the vertical line through the vertex; use it to find mirror points
  • The y-intercept is always (0,c)(0, c) β€” the easiest point to find
  • The discriminant b2βˆ’4acb^2 - 4ac tells you how many x-intercepts exist: two, one, or none
  • Build a short table of values centered on the vertex for an accurate sketch

Return to Algebra 1 for more topics in this section.

Last updated: March 29, 2026