Expand description
Auto-generated module
🤖 Generated with SplitRS
Functions§
- analytic_
continuation_ ty - Analytic continuation: two entire functions agreeing on an open set agree everywhere
- app
- app2
- app3
- argument_
principle_ ty - Argument principle: (1/2πi)∮ f’/f dz = Z - P (zeros minus poles)
- arrow
- bloch_
theorem_ ty - Bloch’s theorem: image of unit disk contains a disk of radius B (Bloch’s constant)
- bohr_
theorem_ ty - Bohr’s theorem: |f| < 1 on disk ⟹ power series converges in disk of radius 1/3
- build_
complex_ env - Build the complex number environment, registering all axioms and theorems.
- bvar
- cauchy_
integral_ approx - Cauchy integral formula computation (simple approximation).
- cauchy_
integral_ formula_ ty - Cauchy integral formula: f(z₀) = (1/2πi) ∮ f(z)/(z-z₀) dz
- cauchy_
integral_ theorem_ ty - Cauchy’s integral theorem: ∮_C f(z) dz = 0 for holomorphic f and closed curve C
- cauchy_
riemann_ ty - CauchyRiemann: holomorphicity ↔ Cauchy-Riemann equations ∀ f : ℂ → ℂ, IsHolomorphic f ↔ SatisfiesCauchyRiemann f
- complex_
abs_ ty - Complex.abs : Complex → Real (|z| = √(re² + im²))
- complex_
add_ ty - Complex.add : Complex → Complex → Complex
- complex_
arg_ ty - Complex.arg : Complex → Real (argument, in (-π, π])
- complex_
conj_ ty - Complex.conj : Complex → Complex (complex conjugate: a + bi → a - bi)
- complex_
exp_ ty - Complex.exp : Complex → Complex (complex exponential)
- complex_
i_ ty - Complex.I : Complex (imaginary unit i = (0, 1))
- complex_
im_ ty - Complex.im : Complex → Real
- complex_
log_ ty - Complex.log : Complex → Complex (principal value logarithm)
- complex_
mk_ ty - Complex.mk : Real → Real → Complex
- complex_
mul_ ty - Complex.mul : Complex → Complex → Complex
- complex_
neg_ ty - Complex.neg : Complex → Complex
- complex_
norm_ sq_ ty - Complex.normSq : Complex → Real (|z|² = re² + im²)
- complex_
of_ real_ ty - Complex.ofReal : Real → Complex (coercion ℝ → ℂ)
- complex_
pow_ ty - Complex.pow : Complex → Nat → Complex
- complex_
re_ ty - Complex.re : Complex → Real
- complex_
sqrt_ ty - Complex.sqrt : Complex → Complex (principal square root)
- complex_
ty - complex_
type_ decl - Complex : Type (ℂ = ℝ × ℝ as a structure)
- contour_
integrate_ circular - Numerically integrate f along a circular contour centered at
centerwith givenradius. Usesn_pointsequally spaced quadrature nodes (trapezoidal rule on the circle). Returns the integral ∮ f(z) dz (NOT divided by 2πi). - cst
- de_
moivre_ theorem_ ty - De Moivre’s theorem: (cos θ + i·sin θ)^n = cos(n·θ) + i·sin(n·θ)
- dft
- Discrete Fourier Transform: X[k] = Σ_{n=0}^{N-1} x[n] · e^(-2πi·k·n/N).
- elliptic_
liouville_ ty - Liouville theorem for elliptic functions: bounded implies constant
- euler_
formula_ ty - Euler’s formula: exp(i·θ) = cos(θ) + i·sin(θ)
- fft
- Cooley-Tukey radix-2 FFT (N must be a power of two; falls back to DFT otherwise).
- fundamental_
theorem_ algebra_ ty - Fundamental theorem of algebra: every non-constant polynomial over ℂ has a root
- hadamard_
factorization_ ty - Hadamard factorization theorem: entire function of finite order has Weierstrass product form
- hardy_
banach_ ty - Hardy space H^p is a Banach space for p ≥ 1
- hartogs_
theorem_ ty - Hartogs’ theorem: holomorphic functions in several variables extend across compact singularities
- idft
- Inverse Discrete Fourier Transform: x[n] = (1/N) Σ_{k=0}^{N-1} X[k] · e^(2πi·k·n/N).
- impl_pi
- jensen_
formula_ ty - Jensen’s formula: log|f(0)| = Σ log(r/|zₖ|) + (1/2π)∫₀²π log|f(re^{iθ})| dθ
- laurent_
series_ ty - Laurent series convergence: every meromorphic function has a Laurent series in an annulus
- liouville_
theorem_ ty - Liouville’s theorem: every bounded entire function is constant
- mandelbrot_
ascii - Render a simple ASCII Mandelbrot set for a given rectangular region.
Returns a
Vec<String>with one row per line. - mandelbrot_
iter - Check membership in the Mandelbrot set: iterate z ↦ z² + c from z = 0.
Returns
Noneif c is in the set (withinmax_iter), orSome(escape_iter). - meromorphic_
riemann_ sphere_ ty - Meromorphic function on the Riemann sphere is a rational function
- mittag_
leffler_ theorem_ ty - Mittag-Leffler theorem: meromorphic function with prescribed poles exists
- mobius_
conformal_ ty - Every Möbius transformation is a conformal automorphism of the Riemann sphere
- mobius_
group_ ty - Möbius transformations form a group (PSL(2,ℂ))
- modular_
form_ finite_ dim_ ty - The space of modular forms of weight k is finite-dimensional
- nat_ty
- nevanlinna_
first_ theorem_ ty - Nevanlinna’s first fundamental theorem: T(r, f) = m(r, f) + N(r, f) + O(1)
- nevanlinna_
second_ theorem_ ty - Nevanlinna’s second fundamental theorem: sum of Nevanlinna deficiencies ≤ 2
- newton_
method - Newton’s method for finding a root of f (with derivative df), starting at z0.
Returns
Some(root)if converged withinmax_iteriterations to withintol. - oka_
theorem_ ty - Oka’s theorem: pseudoconvex ↔ domain of holomorphy in ℂⁿ
- paley_
wiener_ theorem_ ty - Paley-Wiener: L² function is bandlimited ↔ Fourier transform has compact support
- phragmen_
lindelof_ ty - Phragmén-Lindelöf: maximum modulus principle extended to unbounded sectors
- pi
- picard_
great_ theorem_ ty - Picard’s great theorem: near an essential singularity, f is densely surjective (minus at most one point)
- picard_
little_ theorem_ ty - Picard’s little theorem: a non-constant entire function omits at most one value
- prop
- real_ty
- residue_
theorem_ ty - Residue theorem: ∮_C f dz = 2πi · Σ Res(f, zₖ)
- riemann_
hypothesis_ ty - Riemann hypothesis (as axiom): non-trivial zeros of ζ lie on Re(s) = 1/2
- riemann_
mapping_ theorem_ ty - Riemann mapping theorem: every simply connected proper open subset of ℂ is conformally equivalent to the disk
- riemann_
zeta_ approx - Approximate the Riemann zeta function ζ(s) via the first
n_termsof the Dirichlet series. Converges for Re(s) > 1; usen_terms≥ 1000 for reasonable accuracy. - riemann_
zeta_ euler_ product - Euler product approximation of ζ(s): ∏_{p prime} 1/(1 - p^{-s}) over the first
n_primesprimes. - riemann_
zeta_ meromorphic_ ty - Riemann zeta function extends meromorphically to ℂ with a simple pole at s = 1
- roots_
of_ unity_ ty - n-th roots of unity: z^n = 1 has exactly n solutions in ℂ
- rouche_
theorem_ ty - Rouché’s theorem: if |f| > |g| on C, then f and f+g have the same number of zeros inside C
- runge_
theorem_ ty - Runge’s theorem: holomorphic functions on a compact set can be approximated by rational functions
- schwarz_
pick_ lemma_ ty - Schwarz-Pick lemma: holomorphic self-map of the unit disk is a hyperbolic contraction
- sieve_
of_ eratosthenes - Sieve of Eratosthenes: returns the first
countprime numbers. - type0
- weierstrass_
factorization_ ty - Weierstrass factorization theorem: every entire function factors via its zero set
- weierstrass_
p_ ty - Weierstrass ℘-function is an elliptic function for its lattice