Question 1199707
Do it like this one:
---
Show how you use matrices to write an equation for a line that passes through the following points:

(-7, 9), (8, 9)
--------------------
<pre>
| x   y   1|
|-7   9   1| = 0
| 8   9   1|
</pre>
x*(9-9) - y*(-7-8) + 1*(-7*9 - 8*9) = 0
15y -135 = 0
y = 9
================================

<pre>
| x   y   1|
| 4 -10   1| = 0
| 1   1   1|
</pre>
x*(-10*1 - 1*1) - y*(4*1 - 1*1) + 1*(4*1 - 1*-10) = 0
-11x -3y + 14 = 0
11x + 3y = 14
================