User Rating 0.0
Total Usage 0 times
Result: 15.5
|3 4i|
Modulus: 5
Format: x, y, z...
Norm (Length): 3
|x + | =
Is this tool helpful?

Your feedback helps us improve.

About

The absolute value represents the distance of a number or vector from the origin (zero point) regardless of direction. While trivial for integers the concept expands into the "Modulus" for complex numbers and the "Norm" for vectors in linear algebra. This tool is designed for students and engineers needing precise calculations for |x|.

It handles multiple domains. For real numbers it returns the non-negative value. For complex numbers a + bi it calculates the magnitude using the Pythagorean theorem. For vectors it computes the Euclidean norm (L2 norm). Additionally it includes an algebraic solver for equations like |ax + b| = c splitting the problem into its positive and negative cases to find all valid solutions.

absolute value modulus complex number calculator vector norm math solver

Formulas

The calculation depends strictly on the input domain.

Complex Modulus: For z = 3 4i

|z| = 32 + (4)2 = 5

For algebraic equations we must isolate the absolute value term and then bifurcate the equation into two linear equations to solve for the unknown variable.

Reference Data

TypeNotationFormula
Real Number|x|
{
x if x 0x if x < 0
Complex Number|z|a2 + b2
Vector (2D)|v|x2 + y2
Vector (3D)|v|x2 + y2 + z2
Equation|x| = ax = a x = a

Frequently Asked Questions

It is the positive version of that number. For example |-5| is 5. Geometrically it represents the distance from zero on the number line which cannot be negative.
Use the Pythagorean theorem. Square the real part, square the imaginary part, add them together, and take the square root of the result.
Yes. An equation like |x| = -3 has no solution because an absolute value can never be negative (in the real number system).
The Euclidean Norm is simply the length of a vector. It is the square root of the dot product of the vector with itself.