| # | Form | Value | Action |
|---|---|---|---|
| 1 | Rect | 3 + 4i | |
| 2 | Rect | -5 + 12i | |
| 3 | Rect | -7 - 24i | |
| 4 | Rect | -9 + 0i | |
| 5 | Rect | 0 - 1i | |
| 6 | Polar | 10 ∠ 210° |
Let z = a + b i, modulus r = √(a² + b²), argument θ = atan2(b,a) (−π < θ ≤ π).
Principal square root in rectangular form:
√z = u + v i u = √((r + a)/2) v = s · √((r − a)/2), s = 1 if b ≥ 0, else −1 Special case: if b = 0 and a < 0, take u = 0, v = √(−a)
In polar form: if z = r ∠ θ, then
√z (principal) = √r ∠ (θ/2) Second root = −√r ∠ (θ/2)
- Choose the entry mode: rectangular a + b i or polar r ∠ θ°.
- Enter values and select desired decimal precision.
- Click Calculate to view roots, steps, and conversions.
- Use Download CSV or Download PDF to export.
- Try an example row to auto-populate inputs.
If w is a square root of z, then −w is also a square root, because (−w)² = w² = z.
We take θ ∈ (−π, π]; the principal root has argument θ/2 ∈ (−π/2, π/2], giving non-negative imaginary part when b ≥ 0.
For z = a < 0, principal root is purely imaginary: √z = i √|a|; the other root is −i √|a|.
This version expects degrees for polar input. Convert radians via degrees = radians × 180/π.
Differences usually come from rounding, argument range conventions, or alternate branch cut choices.
- z = 0 ⇒ √z = 0 (double root).
- Purely real a > 0 ⇒ roots are ±√a (real).
- Purely real a < 0 ⇒ roots are ± i √|a| (imaginary).
- Purely imaginary bi ⇒ magnitude √|b|, arguments ±45° if b > 0, or ±135° if b < 0.
- Conjugate symmetry: √(\\overline{z}) = \\overline{√z} for principal branch.
- Scaling: √(c z) = √c √z for c ≥ 0.
| # | z (a+bi) | Principal root | Polar (r∠θ°) |
|---|
| # | Principal root w | w² (computed) | Original z |
|---|