0

How would I pick $a,b,c$ to create a line that is parallel to $z$-axis and intersects $x$-axis at point $x=k, y=0, z=0$?

$$ ax+by+cz=d $$

postmortes
  • 6,424

1 Answers1

2

Since, line passes through (k,0,0) and is parallel to z-axis so, the equation of line is $(x,y,z) = (k,0,0) + \alpha$(0,0,1), $\alpha \epsilon \mathbb{R}$

  • If i'm understanding correctly, its a "parametric vector equation" because otherwise you need a system of "n - 1" equations to describe a line in n-dimensions.. But, really a "parametric vector equation" is really a vector represents of 3 equations, where 1 of the equations is linearly dependent, and 2 are linearly independent, leading to a parametric variable "$\alpha$" in your case. (but, more commonly the variable "t") – DiscreteMath Mar 12 '19 at 13:26