Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

This notebook translates the symbols you see most often in machine learning into plain English and business meaning.## Symbol Dictionary| Symbol | Name | Meaning | Business translation || --- | --- | --- | --- || μ\mu | mean | average value | average order size || σ\sigma | standard deviation | typical spread | KPI volatility || σ2\sigma^2 | variance | squared spread | instability or risk || Σ\Sigma | summation | add a sequence of terms | total portfolio value || β\beta | coefficient | learned feature weight | impact of one driver || θ\theta | parameter | model setting | what the model learns || λ\lambda | penalty term | regularization strength | how strongly complexity is penalized || P(AB)P(A \mid B) | conditional probability | chance of A given B | chance of purchase given visit |## How to Read a Formulamermaidflowchart TD A[Symbol] --> B[Name] --> C[Math meaning] --> D[Business meaning]Alt text: Each symbol should be decoded from appearance to name, then math meaning, then business meaning.## Worked Example

y=β0+β1x+ϵy = \beta_0 + \beta_1 x + \epsilon

This means:- yy is the predicted output- β0\beta_0 is the baseline- β1\beta_1 is the effect of the input- xx is the input feature- ϵ\epsilon is leftover noise## Quick Check1. Which symbol usually means average?2. Which symbol often means a coefficient?3. Which notation means one event conditioned on another?

Answers
\mu , \beta , and P(A \mid B)
Next: Quick Linear Algebra

symbols = {    'mu': 'average',    'sigma': 'spread',    'beta': 'weight',    'theta': 'parameter',    'lambda': 'penalty'}for key, value in symbols.items():    print(f'{key:7} -> {value}')
values = [42, 51, 38, 47, 62]mu = sum(values) / len(values)variance = sum((value - mu) ** 2 for value in values) / len(values)print('values =', values)print('mu =', round(mu, 2))print('sigma^2 =', round(variance, 2))