Loading skill
Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Problem-solving strategies for channel capacity in information theory
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-03 | ✗→✓ | ▲ Improved | 171% | 0% |
| case-16 | ✓→✗ | ▼ Worse | -32% | 0% |
| case-09 | ✓→✓ | = Same ✓ | 112% | 0% |
| case-01 | ✓→✓ | = Same ✓ | 3% | 0% |
| case-02 | ✓→✓ | = Same ✓ | 34% | 0% |
Use this skill when working on channel-capacity problems in information theory.
scipy.stats.entropy(p) + scipy.stats.entropy(q) - joint_entropy| Channel | Capacity | |---------|----------| | Binary Symmetric (BSC) | 1 - H(p) where p = crossover prob | | Binary Erasure (BEC) | 1 - epsilon where epsilon = erasure prob | | AWGN | 0.5 log2(1 + SNR) |
z3_solve.py prove "capacity_upper_bound"bashuv run python -c "from scipy.stats import entropy; p = [0.5, 0.5]; q = [0.6, 0.4]; H_X = entropy(p, base=2); H_Y = entropy(q, base=2); print('H(X)=', H_X, 'H(Y)=', H_Y)"
bashuv run python -m runtime.harness scripts/sympy_compute.py simplify "1 + p*log(p, 2) + (1-p)*log(1-p, 2)"
bashuv run python -m runtime.harness scripts/z3_solve.py prove "I(X;Y) <= H(X)"
From indexed textbooks:
See .claude/skills/math-mode/SKILL.md for full tool documentation.
Other measured skills in the registry, with their headline benchmark lift.