Mathematics
MLE of Poisson distribution ( external link)
Review of Asymptotic Complexity(Cornell)
Domain & Range of a function:
Domain of a function is the set of possible values for the variable.
Range of a function is the set of possible outputs of the function.
Partitions:
Partition of a set groups the elements of the set into subsets. There is no empty subset. All elements of the set are present in the subsets, and each is present only once.
Example :
S = {1,2,3,4}
S0={{1}, {2}, {3}, {4}}
S1 = {{1}, {2, 3, 4}}
S2 = {{1, 2}, {3, 4}}
S3 = {{1, 2, 3}, {4}}
S4 = {{1, 3}, {2, 4}}
S5 = {{1, 4}, {2, 3}}
S6 = {{1, 2, 4}, {3}}
S7 = {{1, 3, 4}, {2}}
S8 = {1,2,3,4}
S9 = {{1}, { 2}, {3, 4}}
S10 = {{1, 2}, {3},{4}}
S11 = {{1, 3}, {2},{4}}
S12 = {{1, 4}, {2},{3}}
S13 = {{1}, { 2, 3}, {4}}
S14 = {{1}, { 2, 4}, {3}}