Usage
Use Symbol Expression Calculator to simplify symbol expressions. The supported symbols are x, y and z.
For example:
3x**2 + 5x**2 +sin**2(x) + cos**2(x) = \(1+8x^2\)
(3x**2+24xy+48y**2)/(x+4y) = \( 3x + 12y \)
Python operations for math expressions
Syntax | Math | Operation Name |
a+b | a+b | addition |
a-b | a-b | subtraction |
a*b | \( a \times b \) | multiplication |
a/b | \( a \div b \) | division |
-a | -a | negation |
abs(a) | |a| | absolute value |
a**b | \( a^{b} \) | exponent |
sqrt(a) | \( \sqrt {a} \) | square root |