Found problems: 137
The length of minor axis of ellipse $\rho-\frac{1}{2-\cos\theta}$ is________.
Let the major axis of an ellipse be $AB$, let $O$ be its center, and let $F$ be one of its foci. $P$ is a point on the ellipse, and $CD$ a chord through $O$, such that $CD$ is parallel to the tangent of the ellipse at $P$. $PF$ and $CD$ intersect at $Q$. Compare the lengths of $PQ$ and $OA$.
In rectangular coordinate system, if $m(x^2+y^2+2y+1)=(x-2y+3)^2$ refers to an ellipse, then the range value of $m$ is
$\text{(A)}(0,1)\qquad\text{(B)}(1,+\infty)\qquad\text{(C)}(0,5)\qquad\text{(D)}(5,+\infty)$
There exists complex numbers $z=x+yi$ such that the point $(x, y)$ lies on the ellipse with equation $\frac{x^2}9+\frac{y^2}{16}=1$. If $\frac{z-1-i}{z-i}$ is real, compute $z$.
[i](Source: China National High School Mathematics League 2021, Zhejiang Province, Problem 3)[/i]
A conical surface $C$ is cut by a plane $T$ as shown in the figure on the back of this sheet. Show that $C \cap T$ is an ellipse. You can use as an aid the fact that if you consider the two spheres tangent to $C$ and $T$ as shown in the figure, they intersect $T$ in the bulbs.
[asy]
// calculate intersection of line and plane
// p = point on line
// d = direction of line
// q = point in plane
// n = normal to plane
triple lineintersectplan(triple p, triple d, triple q, triple n)
{
return (p + dot(n,q - p)/dot(n,d)*d);
}
// projection of point A onto line BC
triple projectionofpointontoline(triple A, triple B, triple C)
{
return lineintersectplan(B, B - C, A, B - C);
}
// calculate area of space triangle with vertices A, B, and C
real trianglearea(triple A, triple B, triple C)
{
return abs(cross(A - C, B - C)/2);
}
// calculate incentre of space triangle ABC
triple triangleincentre(triple A, triple B, triple C)
{
return (abs(B - C) * A + abs(C - A) * B + abs(A - B) * C)/(abs(B - C) + abs(C - A) + abs(A - B));
}
// calculate inradius of space triangle ABC
real triangleinradius(triple A, triple B, triple C)
{
return 2*trianglearea(A,B,C)/(abs(B - C) + abs(C - A) + abs(A - B));
}
// calculate excentre of space triangle ABC
triple triangleexcentre(triple A, triple B, triple C)
{
return (-abs(B - C) * A + abs(C - A) * B + abs(A - B) * C)/(-abs(B - C) + abs(C - A) + abs(A - B));
}
// calculate exradius of space triangle ABC
real triangleexradius(triple A, triple B, triple C)
{
return 2*trianglearea(A,B,C)/(-abs(B - C) + abs(C - A) + abs(A - B));
}
unitsize(2 cm);
pair project (triple A, real t) {
return((A.x, A.y*Sin(t) + A.z*Cos(t)));
}
real alpha, beta, theta, t;
real coneradius = 1, coneheight = 3;
real a, b, c;
real[] m, r;
triple A, B, V;
triple ellipsecenter, ellipsex, ellipsey;
triple[] F, O, P, R, W;
path[] ellipse, spherering;
theta = 15;
V = (0,0,-coneheight);
m[1] = sqrt(Cos(theta)^2*coneheight^2 - Sin(theta)^2*coneradius^2)/coneradius;
m[2] = -m[1];
alpha = -aTan(Sin(theta)/m[1]);
beta = -aTan(Sin(theta)/m[2]) + 180;
A = (coneradius*Cos(alpha), coneradius*Sin(alpha), 0);
B = (coneradius*Cos(beta), coneradius*Sin(beta), 0);
W[1] = interp(V,(coneradius,0,0),0.6);
W[2] = interp(V,(-coneradius,0,0),0.4);
O[1] = triangleexcentre(V,W[1],W[2]);
O[2] = triangleincentre(V,W[1],W[2]);
r[1] = triangleexradius(V,W[1],W[2]);
r[2] = triangleinradius(V,W[1],W[2]);
F[1] = projectionofpointontoline(O[1],W[1],W[2]);
F[2] = projectionofpointontoline(O[2],W[1],W[2]);
P[1] = O[1] - (0,0,r[1]*coneradius/sqrt(coneradius^2 + coneheight^2));
P[2] = O[2] - (0,0,r[2]*coneradius/sqrt(coneradius^2 + coneheight^2));
spherering[11] = shift(project(P[1],theta))*yscale(Sin(theta))*arc((0,0),r[1]*coneheight/sqrt(coneradius^2 + coneheight^2),alpha,beta);
spherering[12] = shift(project(P[1],theta))*yscale(Sin(theta))*arc((0,0),r[1]*coneheight/sqrt(coneradius^2 + coneheight^2),beta,alpha + 360);
spherering[21] = shift(project(P[2],theta))*yscale(Sin(theta))*arc((0,0),r[2]*coneheight/sqrt(coneradius^2 + coneheight^2),alpha,beta);
spherering[22] = shift(project(P[2],theta))*yscale(Sin(theta))*arc((0,0),r[2]*coneheight/sqrt(coneradius^2 + coneheight^2),beta,alpha + 360);
ellipsecenter = (W[1] + W[2])/2;
a = abs(W[1] - ellipsecenter);
c = abs(F[1] - ellipsecenter);
b = sqrt(a^2 - c^2);
ellipsex = (W[1] - W[2])/abs(W[1] - W[2]);
ellipsey = (0,1,0);
ellipse[1] = project(ellipsecenter + a*ellipsex, theta);
for (t = 0; t <= 180; t = t + 5) {
ellipse[1] = ellipse[1]--project(ellipsecenter + a*Cos(t)*ellipsex + b*Sin(t)*ellipsey, theta);
}
ellipse[2] = project(ellipsecenter - a*ellipsex, theta);
for (t = 180; t <= 360; t = t + 5) {
ellipse[2] = ellipse[2]--project(ellipsecenter + a*Cos(t)*ellipsex + b*Sin(t)*ellipsey, theta);
}
R[1] = ellipsecenter + 1*ellipsex + ellipsey;
R[2] = ellipsecenter - 1.2*ellipsex + ellipsey;
R[3] = ellipsecenter - 1*ellipsex - ellipsey;
R[4] = ellipsecenter + 1.2*ellipsex - ellipsey;
fill(ellipse[1]--ellipse[2]--cycle, gray(0.9));
draw(yscale(Sin(theta))*Circle((0,0),coneradius));
draw(project(V,theta)--project(A,theta));
draw(project(V,theta)--project(B,theta));
draw(Circle(project(O[1],theta),r[1]));
draw(Circle(project(O[2],theta),r[2]));
draw(spherering[11], dashed);
draw(spherering[12]);
draw(spherering[21], dashed);
draw(spherering[22]);
draw(ellipse[1], dashed);
draw(ellipse[2]);
draw(project(R[1],theta)--interp(project(R[1],theta),project(R[2],theta),0.13));
draw(interp(project(R[1],theta),project(R[2],theta),0.13)--interp(project(R[1],theta),project(R[2],theta),0.76), dashed);
draw(interp(project(R[1],theta),project(R[2],theta),0.76)--project(R[2],theta));
draw(project(R[2],theta)--project(R[3],theta)--project(R[4],theta)--project(R[1],theta));
label("$C$", (-1,0.3));
label("$T$", (1.2,-0.8));
dot(project(F[1],theta));
dot(project(F[2],theta));
//dot("$F_1$", project(F[1],theta));
//dot("$F_2$", project(F[2],theta));
//dot("$O_1$", project(O[1],theta));
//dot("$O_2$", project(O[2],theta));
//dot("$P_1$", project(P[1],theta));
//dot("$V$", project(V,theta));
//dot("$W_1$", project(W[1],theta));
//dot("$W_2$", project(W[2],theta));
[/asy]
Let $T$ be the triangle in the $xy$-plane with vertices $(0, 0)$, $(3, 0)$, and $\left(0, \frac32\right)$. Let $E$ be the ellipse inscribed in $T$ which meets each side of $T$ at its midpoint. Find the distance from the center of $E$ to $(0, 0)$.
A plane cuts a right circular cone of volume $ V$ into two parts. The plane is tangent to the circumference of the base of the cone and passes through the midpoint of the altitude. Find the volume of the smaller part.
[i]Original formulation:[/i]
A plane cuts a right circular cone into two parts. The plane is tangent to the circumference of the base of the cone and passes through the midpoint of the altitude. Find the ratio of the volume of the smaller part to the volume of the whole cone.
If the coordinate origin is inside the ellipse $k^2x^2+y^2-4kx+2ky+k^2-1=0$, then the range value of $k$ is
$\text{(A)}|k|>1\qquad\text{(B)}|k|\neq1\qquad\text{(C)}-1<k<1\qquad\text{(D)}0<|k|<1$
Inside a circular column with a bottom surface with radius of $6$, there are two balls with radius of $6$ as well. The distance betwen their centers is $13$. Draw a plane that is tangent to both spherical surface, intersect the circular column at a curve $C$. $C$ is a ellipse, then the sum of its short axis and long axis is________.
The graph of $x^2-4y^2=0$ is:
${{ \textbf{(A)}\ \text{a parabola} \qquad\textbf{(B)}\ \text{an ellipse} \qquad\textbf{(C)}\ \text{a pair of straight lines} \qquad\textbf{(D)}\ \text{a point} }\qquad\textbf{(E)}\ \text{none of these} } $
Let $C$ be the left vertex of the ellipse $\frac{x^2}8+\frac{y^2}4 = 1$ in the Cartesian Plane. For some real number $k$, the line $y=kx+1$ meets the ellipse at two distinct points $A, B$.
(i) Compute the maximum of $|CA|+|CB|$.
(ii) Let the line $y=kx+1$ meet the $x$ and $y$ axes at $M$ and $N$, respectively. If the intersection of the perpendicular bisector of $MN$ and the circle with diameter $MN$ lies inside the given ellipse, compute the range of possible values of $k$.
[i](Source: China National High School Mathematics League 2021, Zhejiang Province, Problem 12)[/i]
In the $ x \minus{} y$ plane, let $ l$ be the tangent line at the point $ A\left(\frac {a}{2},\ \frac {\sqrt {3}}{2}b\right)$ on the ellipse $ \frac {x^2}{a^2} \plus{} \frac {y^2}{b^2}\equal{}1\ (0 < b < 1 < a)$. Let denote $ S$ be the area of the figure bounded by $ l,$ the $ x$ axis and the ellipse.
(1) Find the equation of $ l$.
(2) Express $ S$ in terms of $ a,\ b$.
(3) Find the maximum value of $ S$ with the constraint $ a^2 \plus{} 3b^2 \equal{} 4$.
Given is an ellipse $ e$ in the plane. Find the locus of all points $ P$ in space such that the cone of apex $ P$ and directrix $ e$ is a right circular cone.
Prove that for any convex pentagon $A_1A_2A_3A_4A_5$, there exists a unique pair of points $\{P,Q\}$ (possibly with $P=Q$) such that $\measuredangle{PA_i A_{i-1}} = \measuredangle{A_{i+1}A_iQ}$ for $1\le i\le 5$, where indices are taken $\pmod5$ and angles are directed $\pmod\pi$.
[i]Calvin Deng.[/i]
Let $\Gamma_1,\Gamma_2$ be two circles centred at the points $(a,0),(b,0);0<a<b$ and having radii $a,b$ respectively.Let $\Gamma$ be the circle touching $\Gamma_1$ externally and $\Gamma_2$ internally. Find the locus of the centre of of $\Gamma$
A plane intersects a right circular cylinder of radius $1$ forming an ellipse. If the major axis of the ellipse of $50\%$ longer than the minor axis, the length of the major axis is
$ \textbf{(A)}\ 1\qquad\textbf{(B)}\ \frac{3}{2}\qquad\textbf{(C)}\ 2\qquad\textbf{(D)}\ \frac{9}{4}\qquad\textbf{(E)}\ 3$
In $xyz$ space, find the volume of the solid expressed by $x^2+y^2\leq z\le \sqrt{3}y+1.$
Looking for a little time alone, Michael takes a jog at along the beach. The crashing of waves reminds him of the hydroelectric plant his father helped maintain before the family moved to Jupiter Falls. Michael was in elementary school at the time. He thinks about whether he wants to study engineering in college, like both his parents did, or pursue an education in business. His aunt Jessica studied business and appraises budding technology companies for a venture capital firm. Other possibilities also tug a little at Michael for different reasons.
Michael stops and watches a group of girls who seem to be around Tony's age play a game around an ellipse drawn in the sand. There are two softball bats stuck in the sand. Michael recognizes these as the foci of the ellipse. The bats are $24$ feet apart. Two children stand on opposite ends of the ellipse where the ellipse intersects the line on which the bats lie. These two children are $40$ feet apart. Five other children stand on different points of the ellipse. One of them blows a whistle and all seven children run screaming toward one bat or the other. Each child runs as fast as she can, touching one bat, then the next, and finally returning to the spot on which she started. When the first girl gets back to her place, she declares, "I win this time! I win!" Another of the girls pats her on the back, and the winning girl speaks again. "This time I found the place where I'd have to run the shortest distance."
Michael thinks for a moment, draws some notes in the sand, then computes the shortest possible distance one of the girls could run from her starting point on the ellipse, to one of the bats, to the other bat, then back to her starting point. He smiles for a moment, then keeps jogging. If Michael's work is correct, what distance did he compute as the shortest possible distance one of the girls could run during the game?
Show that a circle inscribed in a square has a larger perimeter than any other ellipse inscribed in the square.
Each of 2010 boxes in a line contains a single red marble, and for $ 1 \le k \le 2010$, the box in the $ kth$ position also contains $ k$ white marbles. Isabella begins at the first box and successively draws a single marble at random from each box, in order. She stops when she first draws a red marble. Let $ P(n)$ be the probability that Isabella stops after drawing exactly $ n$ marbles. What is the smallest value of $ n$ for which $ P(n) < \frac {1}{2010}$?
$ \textbf{(A)}\ 45 \qquad
\textbf{(B)}\ 63 \qquad
\textbf{(C)}\ 64 \qquad
\textbf{(D)}\ 201 \qquad
\textbf{(E)}\ 1005$
Consider the ellipse $E: 3x^2+y^2=3$ and the hyperbola $H: xy=\frac 34.$
(1) Find all points of intersection of $E$ and $H$.
(2) Find the area of the region expressed by the system of inequality
\[\left\{
\begin{array}{ll}
3x^2+y^2\leq 3 &\quad \\
xy\geq \frac 34 , &\quad
\end{array}
\right.\]
Prove that among all possible triangles whose vertices are $3,5$ and $7$ apart from a given point $P$, the ones with the largest perimeter have $P$ as incentre.
An ellipse with focus $F$ is given. Two perpendicular lines passing through $F$ meet the ellipse at four points. The tangents to the ellipse at these points form a quadrilateral circumscribed around the ellipse. Prove that this quadrilateral is inscribed into a conic with focus $F$
On the ellipse $\frac{x^2}{a^2}+\frac{y^2}{b^2}=1$ find the point $T=(x_0,y_0)$ such that the triangle bounded by the axes of the ellipse and the tangent at that point has the least area.
Let $ABC$ be a triangle such that $AB = AC$. Let $D,E$ be points on $AB,AC$ respectively such that $DE = AC$. Let $DE$ meet the circumcircle of triangle $ABC$ at point $T$. Let $P$ be a point on $AT$. Prove that $PD + PE = AT$ if and only if $P$ lies on the circumcircle of triangle $ADE$.