User Portlet
| Discussions |
|---|
| I'm trying to solve Maximum Entropy problems with Mathematica. The simplest one is a fair coin. It should solve this system of three equations: S[p1_, p2_] := p1 Log[p1] + p2 Log[p2]; L[p1_, p2_, b_] := S[p1, p2] + b (1 - p1 - p2); ... |