Question 1180859
<pre>
Get some graph paper and plot the lines:

{{{drawing(280,400,-2,5,-5,5,grid(1),
circle(0,4,.14), circle(1,1,.14),
blue(line(-2,10,6,-14)), red(line(-5,-11,8,15)) )}}}

The red line is the line 2x-y-1=0, eq.1
The blue line is the line 3x+y-4=0, eq.2

They cross at the point (1,1)

Notice that to get from the point where they cross (1,1)
we have to go left 1 unit and then up 3 units.  That's
indicated by the green lines:

{{{drawing(280,400,-2,5,-5,5,grid(1),
circle(0,4,.14), circle(1,1,.14),
blue(line(-2,10,6,-14)), red(line(-5,-11,8,15)),
green(line(1,1,0,1),line(0,1,0,4))

 )}}}

Now this time starting at (1,1) and go right as many units
as you went up before, and up as many units as you went
left before, like the other green lines below:

{{{drawing(280,400,-2,5,-5,5,grid(1),
circle(0,4,.14), circle(1,1,.14),
blue(line(-2,10,6,-14)), red(line(-5,-11,8,15)),
green(line(1,1,0,1),line(0,1,0,4),
line(1,1,4,1),line(4,1,4,2))

 )}}}

You see that you ended up at the point (4,2).

Now draw a line through (1,1) and (4,2), like this black
line below:

{{{drawing(280,400,-2,5,-5,5,grid(1),circle(4,2,.14),
circle(0,4,.14), circle(1,1,.14),
blue(line(-2,10,6,-14)), red(line(-5,-11,8,15)),
green(line(1,1,0,1),line(0,1,0,4),
line(1,1,4,1),line(4,1,4,2)), line(-8,-2,7,3) 

 )}}}

That black line is the line which is symmetric to eq. 2 with
respect to eq. 1. 

We find its equation.  It goes through (1,1) and (4,2).

We use the slope formula:

{{{m}}}{{{""=""}}}{{{(y[2]-y[1])/(x[2]-x[1]){{{""=""}}}{{{(2-1)/(4-1)}}}{{{""=""}}}{{{1/3}}}.

Then we use the point-slope form:

{{{y-y[1]}}}{{{""=""}}}{{{m(x-x[1])}}}

{{{y-1}}}{{{""=""}}}{{{expr(1/3)(x-1)}}}

Multiply through by 3

{{{3y-3}}}{{{""=""}}}{{{x-1}}}

{{{-x+3y-2=0}}}

or, multiplying by -1

{{{x-3y+2=0}}}  <-- the equation of the black line.

Edwin</pre>