Complex Number Calculator
Instructions :: All Functions
images/complex.js
Instructions
Just type your formula into the top box.
Example: type in (2-3i)*(1+i), and see the answer of 5-i
All Functions
Operators
| |
+ |
Addition operator |
| |
- |
Subtraction operator |
| |
* |
Multiplication operator |
| |
/ |
Division operator |
| |
^ |
Power/Exponent/Index operator |
| |
() |
Parentheses |
Functions
| |
sqrt |
Square Root |
| |
sin |
sine |
| |
cos |
cosine |
| |
tan |
tangent |
| |
asin |
inverse sine (arcsine) |
| |
acos |
inverse cosine (arccos) |
| |
atan |
inverse tangent (arctangent) |
| |
sinh |
Hyperbolic sine |
| |
cosh |
Hyperbolic cosine |
| |
tanh |
Hyperbolic tangent |
| |
ln |
The natural logarithm |
| |
round |
round to nearest integer |
| |
floor |
Returns the largest (closest to positive infinity) value that's not greater than the argument and is an integer. |
| |
ceil |
Returns the smallest (closest to negative infinity) value that's not less than the argument and is an integer. |
| |
conj |
conjugate of complex number. Example: conj(2−3i) = 2+3i |
| |
re |
real part of complex number. Example: re(2−3i) = 2 |
| |
im |
imaginary part of complex number. Example: im(2−3i) = −3i |
Constants