Packet Transmission
A packet consisting of a string of
symbols is transmitted over a noisy channel. Each symbol has a probability 0.0001 of being transmitted in error. Find the largest
for which the probability of incorrect transmission (at least one symbol in error) is less than 0.001.
transmissionProcess = BinomialProcess[10 ^ -4];prob = Probability[x > 0, xtransmissionProcess[n]]ListLogPlot[Transpose@Table[{prob, 10 ^ (-3)}, {n, 0, 15}], Joined -> True, Filling -> Axis]Maximize[{n, prob <= 10 ^ -3 && n∈Integers && 5 <= n <= 15}, n]