PhyslibSearch

QuantumInfo.ClassicalInfo.Channel

2 declarations

definition

Transition probability distribution of a discrete memoryless channel on sequences of length nn

#on_fin

Given a discrete memoryless channel CC with input alphabet II and output alphabet OO, and an input sequence isInis \in I^n (modeled as a function Fin nI\text{Fin } n \to I), the function returns the probability distribution over the output sequences osOnos \in O^n (functions Fin nO\text{Fin } n \to O). The probability of receiving a specific output sequence osos given isis is defined as the product of the transition probabilities for each character: P(osis)=k=0n1PC(oskisk) P(os \mid is) = \prod_{k=0}^{n-1} P_C(os_k \mid is_k) where PC(oi)P_C(o \mid i) is the probability provided by the channel CC for output oo given input ii.

definition

Application of a DMChannel CC to a list of inputs isis

#on_list

Given a discrete memoryless channel CC with input alphabet II and output alphabet OO, and a list of inputs is=[i0,i1,,in1]is = [i_0, i_1, \dots, i_{n-1}] of length nn, this function defines a probability distribution over the sequences of outputs (o0,o1,,on1)On(o_0, o_1, \dots, o_{n-1}) \in O^n. The distribution is obtained by applying the channel CC independently to each element iki_k in the list.