Line passing through a point and normal to a curve

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
4 replies · 2K views
Karol
Messages
1,380
Reaction score
22

Homework Statement


What is the equation of a straight line passing through (1,2) and normal to ##~x^2=4y##

Homework Equations


Slopes of perpendicular lines:
$$m_2=-\frac{1}{m_1}$$

The Attempt at a Solution


$$x^2=4y~\rightarrow~m_1=y'=\frac{x}{2}$$
$$m_2=-\frac{2}{x}$$
$$2=-\frac{2}{1}+b~\rightarrow~b=4$$
The equation of the line: ##~y=-2x+4##
The answer should be ##~x+y=3##
 
on Phys.org
The x you use in m2 = -2/x is not the x value at the (1,2) point. It needs to be the x of the (x,y) values where the normal line intersects the equation.

In the given answer, the intersection is at (2,1) and that gives m2 = -1. That agrees with m1 = 1 = slope of y=x2/4 at (2,1). y' = x/2 = 1.
 
  • Like
Likes   Reactions: scottdave
If you use the point slope form of a line: y - y0 = m*(x - x0) then you can solve it. Assign (x0,y0) the point (1,2), and then (x,y) is a point on the parabola. Substitute y = x2 / 4, and then m = -2/x. You should then be able to solve for x.
 
  • Like
Likes   Reactions: FactChecker
$$\frac{y_1-y_2}{x_1-x_2}=\frac{\frac{x^2}{4}-2}{x-1}=-\frac{2}{x}$$
$$\rightarrow~x^3=16~\rightarrow~x=2$$
$$\rightarrow~y=1$$
$$\rightarrow~y+x=3$$
Thank you Ray and Scott