Documentation

ISAR.HolonomicInstances

Concrete holonomic certificates (Python self-test parity) #

Real.exp #

Gaussian exp(-x²) #

noncomputable def ISAR.gaussian :
Equations
Instances For
    theorem ISAR.deriv_deriv_gaussian (x : ) :
    deriv (deriv gaussian) x = (-2 + 4 * x ^ 2) * gaussian x

    Second derivative of the gaussian, used by sum/product residuals.

    Product exp * gaussian #

    Sum (constant-rate + variable-rate) #

    Double-integral chain #

    sin(x²) #

    noncomputable def ISAR.fresnelSin :
    Equations
    Instances For
      theorem ISAR.hasDerivAt_deriv_fresnelSin (x : ) :
      HasDerivAt (deriv fresnelSin) (2 * Real.cos (x ^ 2) + 2 * x * (-Real.sin (x ^ 2) * (2 * x))) x

      Mixed product sin(x²)·exp(-x²) (Python TEST 4b) #

      First derivative of the mixed product.

      theorem ISAR.deriv_deriv_fresnel_mul_gaussian (x : ) :
      deriv (deriv (fresnelSin * gaussian)) x = (2 * Real.cos (x ^ 2) - 4 * x ^ 2 * Real.sin (x ^ 2)) * gaussian x + 2 * x * Real.cos (x ^ 2) * (-(2 * x) * gaussian x) + (2 * x * Real.cos (x ^ 2) * (-(2 * x) * gaussian x) + Real.sin (x ^ 2) * ((-2 + 4 * x ^ 2) * gaussian x))

      Second derivative of the mixed product via product rule on the first derivative.