2
$\begingroup$

How to find the point of intersection of two lines ?

Let's say $2x+y=5$ and $3x+2y=5$ ?

Thanks

  • 0
    Have you encountered systems of equations until now? Finding the intersection of two lines means solving the system of equations determined by those two lines.2011-06-29

1 Answers 1

3

The graphs of two lines intersect at a point $(s,t)$ when the point $(s,t)$ is on both lines.

The point $(s,t)$ lies on the line $ax+by=c$ when $as+bt=c$.

Thus, to find the intersection of two lines $ax+by=c$ and $dx+ey=f$ (if it exists), we want to look for a pair of numbers $s$ and $t$ for which $as+bt=c\qquad\text{and}\qquad ds+et=f.$

In your example, we want to find an $s$ and $t$ for which $2s+t=5$ and $3s+2t=5$.

Note that if $2s+t=5$, then $t=5-2s$. Substitute this in for $t$ in the expression $3s+2t=5$ to find the value for $s$. Then solve for $t$ using the fact that $t=5-2s$.

  • 2
    @kritya: No problem. The correspondence between the graph of a line (or any function), and its equation, is a very important one.2011-06-29