Tested tool guide
Tested browser tools
Checked August 16, 2026
What Implicit Curve Plotter does, with a checked example
An implicit curve is traced as the set of locations where an entered expression in x and y becomes zero. The plotter samples that scalar field across the displayed coordinate region and uses marching squares to join zero-crossing cells into visible curve segments. This lets it show closed loops, vertical tangents, and several branches without rewriting the relation as y = g(x). The main interpretive trap is treating the picture as a surface plot: it displays only the zero level, not the value or height of f elsewhere.
Worked example
A concrete input and expected output from the current implementation.
->
Expected output
A numerical zero-contour approximating a circle centered at (0, 0) with radius 2 and axis crossings at (-2, 0), (2, 0), (0, -2), and (0, 2).
Setting the expression to zero gives x*x + y*y = 4, so every point on the curve is distance sqrt(4) = 2 from the origin. At each listed crossing, the squared coordinates sum to 4.