Questions tagged [conic-sections]

For questions about circles, ellipses, hyperbolas, and parabolas. These curves are the result of intersecting a cone with a plane.

A conic section is a smooth planar curve that is the result of intersecting a cone with a plane. There are commonly four conic sections: circles, ellipses, parabolas, and hyperbolas.

We can construct these conic sections analytically. The solutions to the equation $x^2+y^2=z^2$ give us a cone in three-dimensional space. An plane in three-dimensional space that goes through a point $p=(x_0,y_0,z_0)$ and has normal vector $\langle a,b,c \rangle$ is given by the equation

$$a(x-x_0)+b(y-y_0)+c(z-z_0)=0\,.$$

Finding the common solutions to the equation of the cone and equation of the plane for various choices of $p$ and normal vector will—after a change in coordinates to write them as planar curves—lead you to the (potentially) familiar equations

  • Circle: $x^2+y^2 = r^2$
  • Ellipse: $ax^2 + b y^2 = r^2$, where $a,b>0$
  • Parabola: $ax^2 +by = r^2$, where $a\neq 0$
  • Hyperbola: $ax^2 - by^2 = r^2$, where $a,b>0$

There are also geometric constructions of the conic sections. For example, a circle is the set of all points that are a fixed distance from a given points. An ellipse is the set of all points .... The construction of Dandelin spheres (see Wikipedia) unifies the analytic and geometric constructions of conic sections.

4912 questions
0
votes
1 answer

What is the difference between shifting functions and shifting parabolas?

For shifting a parabola to the right, do we write a "$+$" sign or "$-$" sign in the equation? Is this the same way for shifting a function, as well? Here is the equation of parabola just for the reference: $y=(x-0)^2+c $ (Where $c$ is a variable;…
0
votes
3 answers

Where is $\theta$ measured from in an ellipse?

A general point in a an ellipse is given by $(A \cos \theta, B \sin \theta)$. Where is this $\theta$ measured from? Is it between the point and origin or the angle made by the normal at that point and the $x$-axis?
0
votes
2 answers

Recognizing conic section from the general equation.

What is the proof from the general equation $Ax^2 +Cy^2+Dx+Ey+F =0$ of a conic section that $AC>0$ is an ellipse $AC =0$ is a parabola $AC<0$ is a hyperbola?
0
votes
1 answer

Parabola in a tilted coordinates

Suppose,we have an equation of a parabola $$y=ax^2+bx$$in $xy$ coordinates. We want to find the equation of this parabola in a coordinate which is tilted at an angle ${\theta}$ with the xy such that $x'$ is below $x$. Is there any easy way to do…
0
votes
1 answer

Fixed and variable Circle question

Two perpendicular normals to variable Circle are tangent to fixed circle $\ C_1$ with radius 2 and locus of centre of variable circle be the curve $\ C_2$, then find the product of maximum and minimum distance between the curves $\ C_1$& $\…
0
votes
2 answers

Line through $B=(2,5)$ meets $2x^2 − 5xy + 2y^2 = 0$ at $P$, $Q$. Find locus of $R$ on line such that $BP$, $BR$, $BQ$ are in harmonic progression

A variable line $L$ passing through the point $B(2, 5)$ intersects the crossed lines $$2x^2 − 5xy + 2y^2 = 0$$ at $P$ and $Q$. Find the locus of the point $R$ on $L$ such that distances $BP$, $BR$, and $BQ$ are in harmonic progression. The two…
0
votes
1 answer

Maximum number of parabolas that can be drawn with a given axis and tangent at vertex.

If the equation of axis and the tangent at vertex are given, then what is the maximum number of parabolas that can be drawn? My approach is this: Since the equation of axis and tangent at the vertex is fixed, then only 1 parabola is possible. Am…
Tips
  • 388
0
votes
2 answers

How to calculate a transformed conic curve?

The origin question came from I want to move from A to B with a conic curve, and its model was like this: Say We have a curve transformed from $y=x^2$ (just with rotation and movement) And is there a transform that could let me calculate the…
0
votes
1 answer

Find the ratio of the area of the region bounded by the parabola and the line segment $PQ$ to the area of triangle $PQR$

For the parabola $y=-x^2$,let $a<0,b>0,$ $P(a,-a^2),Q(b,-b^2)$.Let $M$ be the mid point of $PQ$ and $R$ be the point of intersection of the vertical line through $M,$ with the parabola.Find the ratio of the area of the region bounded by the parabola…
0
votes
2 answers

Find the required system of circles

Show that the equation $x^2+y^2-2x-2ay-8=0$ represents for different values of '$a$' a system of circles passing through two fixed points $A$,$B$ on the $x$-axis and find the equation of that circle of the system, the tangents to which at $A$ and…
0
votes
1 answer

Perimeter of triangle inside

Given an ellipse centered at $(3,-3)$, and has a focus at $(3,-8)$. What is the perimeter of a triangle that entirely lies within the ellipse and has two of its vertices on the foci of the ellipse and the other vertex lies on any point on the…
0
votes
1 answer

How to find the equation of this ellipse?

If you have four points $A(4,10),\; B(-4,10),\; C(-4,-10),\; D(4,-10)$ and an ellipse passes $A,B,C$ and $D$ points and these points form a rectangle inside this ellipse. How to find the equation of that ellipse?
0
votes
1 answer

Equation in variable $(x,y)$ represent curve in Cartesian plane

If $x,y \in \mathbb{R}.$ Then the equation $3x^4-2(19y+8)x^2+361y^2+2(100+y^4)+64=2(190y+2y^2)$ represent in rectangular cartesian system Options $(a)$ Circle $\;\;\;\;\;(b)$ Parabola $\;\;\;\;\;\; (c)$ Ellipse $\;\;(d)$ Hyperbola Try: From…
DXT
  • 11,241
0
votes
0 answers

Finding Vector3 of a rotated ellipse in 3D space

I have the following code to evaluate an (X, Z) point on an Ellipse given a t-value between 0 and 1. I want to be able to rotate the ellipse by a certain number of degrees along the minor axis. // given 0f <= t <= 1f float angle = Mathf.Deg2Rad *…
CaldwellYSR
  • 101
  • 1
0
votes
0 answers

What is the focal length of an arbitrary parabola?

Given a parabola of the form $Ax^2 + Bxy + Cy^2 + Dx + Ey + F = 0$, where $B^2 - 4AC = 0$, what is the formula for the focal length?
Him
  • 447