Point at signed distance r from (x₁, y₁) along the line of inclination θ. r > 0 in the direction of increasing θ, r < 0 in the opposite direction.
Let a line pass through A(x1,y1) at inclination θ. A point P(x,y) on this line at signed distance r from A satisfies:
x−x1=rcosθ,y−y1=rsinθ
since the displacement from A to P has magnitude ∣r∣ in direction (cosθ,sinθ).
Dividing:
cosθx−x1=sinθy−y1=r
r>0: point is in the forward direction (θ increasing). r<0: backward direction.
Why this matters
The parametric form converts the line into a number line. Every point corresponds to one value of r, and ∣r∣ is its distance from A.
Point at given distance: set ∣r∣ to the required value. Two solutions (±r) give two points equidistant from A on opposite sides.
Chord cut by a curve: substitute (x1+rcosθ,y1+rsinθ) into the curve equation. The result is a quadratic in r. Its roots r1,r2 give the signed distances to the two intersection points. Length of chord =∣r1−r2∣; midpoint corresponds to r=2r1+r2 — obtainable from Vieta's without solving the quadratic.
Key Idea
Vector form. The parametric form is precisely the 2D instance of the vector equation of a line. Writing $\hat{d} = (\cos\theta, \sin\theta)$ as the unit direction vector and $\vec{a} = (x_1, y_1)$ as the position vector of $A$:
>
> $$
> \vec{r} = \vec{a} + \lambda\,\hat{d}
> $$
>
> where $\lambda = r$ is the signed distance parameter. In 3D this generalises immediately to $\vec{r} = \vec{a} + \lambda\vec{b}$ where $\vec{b}$ need not be a unit vector — $\lambda$ then loses its distance interpretation but the line is the same. The 2D parametric form is the bridge between coordinate geometry and vector geometry of lines.