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 || --- | --- | --- | --- || | mean | average value | average order size || | standard deviation | typical spread | KPI volatility || | variance | squared spread | instability or risk || | summation | add a sequence of terms | total portfolio value || | coefficient | learned feature weight | impact of one driver || | parameter | model setting | what the model learns || | penalty term | regularization strength | how strongly complexity is penalized || | 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
This means:- is the predicted output- is the baseline- is the effect of the input- is the input feature- 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
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))