docs(optimizr): add logo and fix rtd deps

This commit is contained in:
Melvin Alvarez
2026-02-09 16:15:41 +01:00
parent c1f4c0bde7
commit 43af949904
28 changed files with 805 additions and 220 deletions
@@ -0,0 +1,15 @@
# Mathematical Foundations
This section provides formulas used across OptimizR algorithms.
## Differential Evolution
- Mutation and crossover follow classic DE/rand/1 and best/1 strategies.
- See Storn & Price (1997) for full derivations.
## MCMC
- Metropolis-Hastings with Gaussian proposals.
- Acceptance probability: $\alpha = \min\left(1, \frac{\pi(x')q(x\mid x')}{\pi(x)q(x'\mid x)}\right)$.
## HMM
- Baum-Welch (EM) for parameter estimation.
- Viterbi for decoding most likely state sequence.