Documentation

Mathlib.Analysis.SpecialFunctions.Pow.Complex

Power function on #

We construct the power functions x ^ y, where x and y are complex numbers.

noncomputable def Complex.cpow (x y : ) :

The complex power function x ^ y, given by x ^ y = exp(y log x) (where log is the principal determination of the logarithm), unless x = 0 where one sets 0 ^ 0 = 1 and 0 ^ y = 0 for y ≠ 0.

Equations
Instances For
    noncomputable instance Complex.instPow :
    Equations
    @[simp]
    theorem Complex.cpow_eq_pow (x y : ) :
    theorem Complex.cpow_def (x y : ) :
    x ^ y = if x = 0 then if y = 0 then 1 else 0 else exp (log x * y)
    theorem Complex.cpow_def_of_ne_zero {x : } (hx : x 0) (y : ) :
    x ^ y = exp (log x * y)
    @[simp]
    theorem Complex.cpow_zero (x : ) :
    x ^ 0 = 1
    @[simp]
    theorem Complex.cpow_eq_zero_iff (x y : ) :
    x ^ y = 0 x = 0 y 0
    @[simp]
    theorem Complex.zero_cpow {x : } (h : x 0) :
    0 ^ x = 0
    @[simp]
    theorem Complex.cpow_one (x : ) :
    x ^ 1 = x
    @[simp]
    theorem Complex.one_cpow (x : ) :
    1 ^ x = 1
    theorem Complex.cpow_add {x : } (y z : ) (hx : x 0) :
    x ^ (y + z) = x ^ y * x ^ z
    theorem Complex.cpow_mul {x y : } (z : ) (h₁ : -Real.pi < (log x * y).im) (h₂ : (log x * y).im Real.pi) :
    x ^ (y * z) = (x ^ y) ^ z
    theorem Complex.cpow_neg (x y : ) :
    theorem Complex.cpow_sub {x : } (y z : ) (hx : x 0) :
    x ^ (y - z) = x ^ y / x ^ z
    theorem Complex.cpow_int_mul (x : ) (n : ) (y : ) :
    x ^ (n * y) = (x ^ y) ^ n

    See also Complex.cpow_int_mul'.

    theorem Complex.cpow_mul_int (x y : ) (n : ) :
    x ^ (y * n) = (x ^ y) ^ n
    theorem Complex.cpow_nat_mul (x : ) (n : ) (y : ) :
    x ^ (n * y) = (x ^ y) ^ n
    theorem Complex.cpow_mul_nat (x y : ) (n : ) :
    x ^ (y * n) = (x ^ y) ^ n
    @[simp]
    theorem Complex.cpow_natCast (x : ) (n : ) :
    x ^ n = x ^ n
    theorem Complex.cpow_two (x : ) :
    x ^ 2 = x ^ 2
    @[simp]
    theorem Complex.cpow_intCast (x : ) (n : ) :
    x ^ n = x ^ n
    @[simp]
    theorem Complex.cpow_nat_inv_pow (x : ) {n : } (hn : n 0) :
    theorem Complex.cpow_int_mul' {x : } {n : } (hlt : -Real.pi < n * x.arg) (hle : n * x.arg Real.pi) (y : ) :
    x ^ (n * y) = (x ^ n) ^ y

    A version of Complex.cpow_int_mul with RHS that matches Complex.cpow_mul.

    The assumptions on the arguments are needed because the equality fails, e.g., for x = -I, n = 2, y = 1/2.

    theorem Complex.cpow_nat_mul' {x : } {n : } (hlt : -Real.pi < n * x.arg) (hle : n * x.arg Real.pi) (y : ) :
    x ^ (n * y) = (x ^ n) ^ y

    A version of Complex.cpow_nat_mul with RHS that matches Complex.cpow_mul.

    The assumptions on the arguments are needed because the equality fails, e.g., for x = -I, n = 2, y = 1/2.

    theorem Complex.pow_cpow_nat_inv {x : } {n : } (h₀ : n 0) (hlt : -(Real.pi / n) < x.arg) (hle : x.arg Real.pi / n) :
    theorem Complex.sq_cpow_two_inv {x : } (hx : 0 < x.re) :
    (x ^ 2) ^ 2⁻¹ = x

    See also Complex.pow_cpow_ofNat_inv for a version that also works for x * I, 0 ≤ x.

    theorem Complex.mul_cpow_ofReal_nonneg {a b : } (ha : 0 a) (hb : 0 b) (r : ) :
    (a * b) ^ r = a ^ r * b ^ r