0

I have the line $y=x\cdot\frac{-a}{-3a^2+4}$. I want to find the curve that this line is tangent to. More info: the tangency point needs to be at coordinates $(\frac{a\left(-3a^2+4\right)}{-9a^2+16},-\frac{a^2}{-9a^2+16})$

Clarifications:

The line should always be tangent to the curve, even when you plug in different values in the parameter.

Also, the curve must be constant, meaning that it should not be expressed via parameters.

  • 1
    What sort of curve? A circle, a parabola or what? – Michael Hoppe Dec 10 '18 at 19:48
  • I think there's only one curve that my info applies to, but it indeed should be a function. – TreasureGhost Dec 10 '18 at 19:56
  • 1
    @TreasureGhost Not true. Just draw a perpendicular to the line through the tangent point. Choose any point on that line and draw the circle with the center in the chosen point, and the radius equal to the distance from the chosen point to the tangent point. This circle is tangent to the line. Or choose $a=0$. Then the tangent point is $(0,0)$ and the tangent line is $y=0$. I can choose $f(x)=x^2$, or $3x^2$, or $x^5+\pi x^3$, or $\cos(x)-1$, and so on – Andrei Dec 10 '18 at 20:01
  • Is it always tangent to the line as the parameter changes values, though? I meant that the line should be always tangent to the curve. Similarly: $2ax-a^2$ is always tangent to $x^2$ as the parameter changes values. I'll add some clarifications. – TreasureGhost Dec 10 '18 at 20:10
  • 2
    You know the slope of the tangent at every point on the curve. Does this suggest a differential equation that you can try to solve? – amd Dec 10 '18 at 23:24

1 Answers1

1

the tangency point needs to be at coordinates $(\frac{a\left(-3a^2+4\right)}{-9a^2+16},-\frac{a^2}{-9a^2+16})$

The point of tangency is a point on your curve. So for each value of $a$, the point $$\left(\frac{a\left(-3a^2+4\right)}{-9a^2+16},-\frac{a^2}{-9a^2+16}\right)$$

is a point on your curve. I.e., a parametric equation for your curve is $$(x(t), y(t) ) =\left(\frac{t\left(-3t^2+4\right)}{-9t^2+16},-\frac{t^2}{-9t^2+16}\right)$$

If this curve doesn't meet your tangency condition (you can check that yourself), then you are out-of-luck. No curve can satisfy your conditions.

Paul Sinclair
  • 43,643