Tested tool guide
Tested browser tools
Checked August 16, 2026
What Trig Identity Verifier does, with a checked example
Enter two trigonometric expressions and this tool answers one question: do they describe the same function? It plots both curves on the same axes over the domain you choose, then evaluates the two expressions side by side at a grid of sample points and reports the largest absolute difference between them. The surprise most users hit: a clean match is strong evidence, not a proof. Sampling can never rule out two functions that agree at every sampled point yet differ in between, so a passing result means 'no counterexample found', while a failing one is definitive.
Worked example
A concrete input and expected output from the current implementation.
Input
LHS: sin(x)^2 + cos(x)^2 RHS: 1 domain: [0, 2*pi]
->
Expected output
Every sampled point matches: the largest |LHS - RHS| is about 1e-16, at the limit of double-precision arithmetic, and the two curves overlay exactly across [0, 2*pi]. Verdict: the identity holds on this domain.
sin(x)^2 + cos(x)^2 = 1 is the Pythagorean identity, true for every real x. Floating-point evaluation of both sides lands within 1e-16 of equality at every sample, so both the graphical and the numerical checks return the tool's cleanest possible pass.