For use with equations of the form y = mx + c Gradient = m Y-Intercept = c Works with *any* equation of the form y = mx + c
Taken from this project: https://scratch.mit.edu/projects/94465760/ Formulas: To calculate x: x = (c2 - c1) / (m1 - m2) To calculate y: y = (m1c2 - m2c1) / (m1 - m2) OR y = (x * m1) + c1 Equations were calculated using pen, paper and patience :)