Proof through an API
Call formal reasoning as an infrastructure capability instead of operating a research stack.
Hydra exposes Schematic’s autonomous proof engine directly – formalising claims, searching proof space and returning independently checkable results.
How Hydra works
Three moments from the product experience.
const result = await hydra.prove({ system: 'lean4', claim: '∀ n, sum n = n * (n + 1) / 2', context: 'Nat', verify: true});For every natural number, the first n values sum to a closed form.
∀ n : ℕ, 2 * ∑ i ∈ Finset.range (n + 1), i = n * (n + 1)What changes
Call formal reasoning as an infrastructure capability instead of operating a research stack.
Separate the intelligence that searches from the kernel that decides what is valid.
Store, replay and compose proof artefacts across applications and mathematical work.
Hydra is the proof engine inside Sentry, where the same machinery is applied to the behaviour of production software.