Difference between revisions of "Parabola"
(→Intermediate) |
|||
(14 intermediate revisions by 5 users not shown) | |||
Line 1: | Line 1: | ||
− | A '''parabola''' is a type of [[conic section]]. A parabola is a [[locus]] of points that are equidistant from a point (the [[focus]]) and a line (the [[directrix]]). | + | A '''parabola''' is a type of [[conic section]]. A parabola is a [[locus]] of points that are equidistant from a point (the [[focus]]) and a line (the [[directrix]]). |
== Parabola Equations == | == Parabola Equations == | ||
+ | {{Asy image|1=<asy> | ||
+ | import graph; | ||
+ | size(100); // Square canvas | ||
+ | Label f; | ||
+ | f.p = fontsize(6); | ||
+ | |||
+ | // Axes: from -8 to 8 with tick steps of 2 | ||
+ | xaxis(-8, 8, Ticks(f, 2.0)); | ||
+ | yaxis(-8, 8, Ticks(f, 2.0)); | ||
+ | |||
+ | // Define the function | ||
+ | real f(real x) { return x^2; } | ||
+ | |||
+ | // Draw from x = -3 to x = 3 (main visible part of the parabola) | ||
+ | draw(graph(f, -3, 3), blue+linewidth(1)); | ||
+ | </asy>|2=right|3=Graph of <math>y=x^2</math>}} | ||
There are several "standard" ways to write the [[equation]] of a parabola. The first is [[polynomial]] form: <math>y = a{x}^2+b{x}+c</math> where a, b, and c are [[constant]]s. This is useful for manipulating the polynomial. | There are several "standard" ways to write the [[equation]] of a parabola. The first is [[polynomial]] form: <math>y = a{x}^2+b{x}+c</math> where a, b, and c are [[constant]]s. This is useful for manipulating the polynomial. | ||
Line 9: | Line 25: | ||
The third way is the conic section form, or <math>y^2</math><math>=4px</math> or <math>x^2=4py</math> where the p is a constant, and is the distance from the focus to the vertex. | The third way is the conic section form, or <math>y^2</math><math>=4px</math> or <math>x^2=4py</math> where the p is a constant, and is the distance from the focus to the vertex. | ||
− | ==Graphing Parabolas== | + | == Graphing Parabolas == |
− | + | ||
− | Using the completed square form, <math>y - k = a(x - h)^2</math> or <math>x - h = a(y - k)^2</math>, the vertex of the graph is at the point <math>(h, k)</math>. The graph appears vertically if the <math>x</math> term is squared, and horizontal if the <math>y</math> term is squared. The graph will be oriented (opens up) upwards/right if <math>a</math> is positive, and will be downwards/left if <math>a</math> is negative.<br /><br /><br /><br /><br /><br /><br /><br /><br /> | + | Using the completed square form, <math>y - k = a(x - h)^2</math> or <math>x - h = a(y - k)^2</math>, the vertex of the graph is at the point <math>(h, k)</math>. The graph appears vertically if the <math>x</math> term is squared, and horizontal if the <math>y</math> term is squared. The graph will be oriented (opens up) upwards/right if <math>a</math> is positive, and will be downwards/left if <math>a</math> is negative. |
+ | Here are the graphs of a few parabolas: | ||
+ | <center> <math>3x^2-14x+8</math> (<math>a</math> is positive) | ||
+ | <asy> | ||
+ | import graph; | ||
+ | size(300); | ||
+ | Label f; | ||
+ | f.p=fontsize(6); | ||
+ | xaxis(-9,9,Ticks(f, 1.0)); | ||
+ | yaxis(-9,9,Ticks(f, 1.0)); | ||
+ | real f(real x) | ||
+ | { | ||
+ | return 3x^2-14x+8; | ||
+ | } | ||
+ | draw(graph(f,(7+2*sqrt(13))/3,(7-2*sqrt(13))/3),red+linewidth(1)); | ||
+ | </asy></center> | ||
+ | <center><math>-x^2+2x+2</math> (<math>a</math> is negative) | ||
+ | <asy> | ||
+ | import graph; | ||
+ | size(300); | ||
+ | Label f; | ||
+ | f.p=fontsize(6); | ||
+ | xaxis(-8,8,Ticks(f, 2.0)); | ||
+ | yaxis(-8,8,Ticks(f, 2.0)); | ||
+ | real f(real x) | ||
+ | { | ||
+ | return -x^2+2x+2; | ||
+ | } | ||
+ | draw(graph(f,1-sqrt(11),1+sqrt(11)),green+linewidth(1)); | ||
+ | </asy></center> | ||
+ | <br /><br /><br /><br /><br /><br /><br /><br /><br /> | ||
+ | |||
+ | |||
+ | ==Video Description== | ||
+ | https://youtu.be/Res-cddhRLw?si=a2XGd_hkEArrwOVG | ||
+ | |||
+ | ~MathProblemSolvingSkills.com | ||
+ | |||
+ | |||
==Problems== | ==Problems== | ||
Line 18: | Line 72: | ||
=== Intermediate === | === Intermediate === | ||
− | Suppose that a parabola has vertex <math>\left(\dfrac{1}{4},-\frac{9}{8}\right)</math> and equation <math>y=ax^2+bx+c</math>, where <math>a>0</math> and <math>a+b+c</math> is an integer. The minimum possible value of <math>a</math> can be written in the form <math>\dfrac{p}{q}</math> where <math>p</math> and <math>q</math> are relatively prime positive integers. Find <math>p+q</math>. <div style="text-align:right;">([[2011 AIME I Problems/Problem 6|2011 AIME I, Problem 6]])</div> | + | #Suppose that a parabola has vertex <math>\left(\dfrac{1}{4},-\frac{9}{8}\right)</math> and equation <math>y=ax^2+bx+c</math>, where <math>a>0</math> and <math>a+b+c</math> is an integer. The minimum possible value of <math>a</math> can be written in the form <math>\dfrac{p}{q}</math> where <math>p</math> and <math>q</math> are relatively prime positive integers. Find <math>p+q</math>. <div style="text-align:right;">([[2011 AIME I Problems/Problem 6|2011 AIME I, Problem 6]])</div> |
=== Olympiad === | === Olympiad === | ||
+ | #Find the area of the largest triangle <math>ABC</math> [and prove this is the maximum] whose interior is entirely within the region bounded by <math>y=\sqrt{3}x-1</math> and <math>y=3x^2-12x+1</math>. | ||
== See also== | == See also== | ||
Line 26: | Line 81: | ||
*[[Circle]] | *[[Circle]] | ||
*[[Ellipse]] | *[[Ellipse]] | ||
+ | |||
+ | [[Category:Geometry]] |
Latest revision as of 19:24, 22 June 2025
A parabola is a type of conic section. A parabola is a locus of points that are equidistant from a point (the focus) and a line (the directrix).
Contents
Parabola Equations
|
Graph of ![]() |
There are several "standard" ways to write the equation of a parabola. The first is polynomial form: where a, b, and c are constants. This is useful for manipulating the polynomial.
The second is completed square form, or where a, h, and k are constants and the vertex is (h,k). This is very useful for graphing the quadratic because the vertex and stretching factor are immediately before you.
The third way is the conic section form, or or
where the p is a constant, and is the distance from the focus to the vertex.
Graphing Parabolas
Using the completed square form, or
, the vertex of the graph is at the point
. The graph appears vertically if the
term is squared, and horizontal if the
term is squared. The graph will be oriented (opens up) upwards/right if
is positive, and will be downwards/left if
is negative.
Here are the graphs of a few parabolas:


![[asy] import graph; size(300); Label f; f.p=fontsize(6); xaxis(-9,9,Ticks(f, 1.0)); yaxis(-9,9,Ticks(f, 1.0)); real f(real x) { return 3x^2-14x+8; } draw(graph(f,(7+2*sqrt(13))/3,(7-2*sqrt(13))/3),red+linewidth(1)); [/asy]](http://latex.artofproblemsolving.com/e/f/0/ef05cddb62e9f4a3185f556405ec61a88c1c91b7.png)


![[asy] import graph; size(300); Label f; f.p=fontsize(6); xaxis(-8,8,Ticks(f, 2.0)); yaxis(-8,8,Ticks(f, 2.0)); real f(real x) { return -x^2+2x+2; } draw(graph(f,1-sqrt(11),1+sqrt(11)),green+linewidth(1)); [/asy]](http://latex.artofproblemsolving.com/c/0/d/c0d9ba587243d9b1155bf2e547df7685ebabd990.png)
Video Description
https://youtu.be/Res-cddhRLw?si=a2XGd_hkEArrwOVG
~MathProblemSolvingSkills.com
Problems
Introductory
- A parabola with equation
passes through the points (2,3) and (4,3). What is
?
Intermediate
- Suppose that a parabola has vertex
and equation
, where
and
is an integer. The minimum possible value of
can be written in the form
where
and
are relatively prime positive integers. Find
.
Olympiad
- Find the area of the largest triangle
[and prove this is the maximum] whose interior is entirely within the region bounded by
and
.