Solve equations with substitution method: Difference between revisions

Content added Content deleted
(Added XPL0 example.)
Line 56: Line 56:


func getCrossingPoint(firstEquation,secondEquation)
func getCrossingPoint(firstEquation,secondEquation)

x1 = firstEquation[1] y1 = firstEquation[2] r1 = firstEquation[3] x2 = secondEquation[1] y2 = secondEquation[2] r2 = secondEquation[3]
x1 = firstEquation[1] y1 = firstEquation[2] r1 = firstEquation[3] x2 = secondEquation[1] y2 = secondEquation[2] r2 = secondEquation[3]
temp = []
temp = []
add(temp,x1) add(temp,-y1) add(temp,r1)
add(temp,x1) add(temp,-y1) add(temp,r1)
resultY = ((temp[1]* r2) - (x2 * temp[3])) / ((x2 * temp[2]) + (temp[1]*y2))
resultY = ((temp[1]* r2) - (x2 * temp[3])) / ((x2 * temp[2]) + (temp[1]*y2)) resultX = (r1 - (y1*resultY)) / x1
resultX = (r1 - (y1*resultY)) / x1
see "x = " + resultX + nl + "y = " + resultY + nl
see "x = " + resultX + nl + "y = " + resultY + nl
</lang>
</lang>