Height:
Width:
Size:
Fuzz Factor:
Expression:

This is a super simple, imprecise graphing calculator. Define the size of the quadrants and the resolution of each pixel. Enter a numerical expression (LHS == RHS), and if you like, a "fuzz" factor to allow imprecise matches. (Fuzz factor should be increased for conic functions.) Have fun!

Some standard functions:

  • Circle - Math.pow(x,2)+Math.pow(y,2)==2*radius
  • Quadratic - y==Math.pow(x,2)
  • Cubic - y==.1*Math.pow(x,3)
  • Hyperbola - 1==Math.pow(x,2)/Math.pow(a,2) - Math.pow(y,2)/Math.pow(b,2)