multivariate generating function MGF 多变量生成函数

MGF多变量生成函数multivariate generating function

定义

比如,以前可能让你计数有\(k-1\)个逆序对的n-排列个数\(A(n,k)\)

现在让你计数

指定了n-排列圆分解后各个长度\(j\)的cycles的个数\(\chi_j\),让你计数

或者,指定了各字符出现频数的长n的字符串个数

例子

the exponential MGF of permutation with \(u_1,u_2\) marking the number of 1-cycles and 2-cycles to be

\[P\left(z, u_{1}, u_{2}\right)=\frac{\exp \left(\left(u_{1}-1\right) z+\left(u_{2}-1\right) \frac{z^{2}}{2}\right)}{1-z}
\]

可以想象其实还有其他的\(u_j\),这些\(u_j\)都取1了

如果取$u_1=u_2=1 $ , 对应的是计数所有的n-排列个数的EGF

\[P(z,1,1)=(1-z)^{-1}
\]

对应的计数是\(n!\)

如果\(u_1=0,u_2=1\),给出derangement(错排;长度为1的cycles的个数为0)的EGF

\[P(z,0,1)=e^{-z}/(1-z)
\]

对应的计数是\((n!)(\frac{1}{2!}-\frac{1}{3!}...+(-1)^{n}\frac{1}{(n)!})\)

如果\(u_1=u_2=0\) ,给出所有的cycles长度都大于2的n-排列个数的EGF

\[P(z,0,0)=e^{-z-z^2/2}/(1-z)
\]

对应的计数是$

a(n) = \sum_{i=3..n} \binom{n-1}{i-1}\cdot (i-1)! \cdot a(n-i).a(0)=1,a(1)=0,a(2)=0$ https://oeis.org/A038205

如果置\(u_1=u,u_2=1\),给出有k个singleton cycles(k个位置正好不变)的n-排列的EBGF

\[P(z,u,1)=\frac{e^{(u-1)z}}{1-z}
\]

对应的计数是 \(\tbinom{n}{k}(n-k)!(\frac{1}{2!}-\frac{1}{3!}...+(-1)^{n-k}\frac{1}{(n-k)!})\)

Extremal parameters

现在要研究这样的问题:

比如:

一个例子是the largest component in a combinatorial structure (for instance, the largest cycle of a permutation) ,指定了排列的长度\(n\)和最大的cycle长度\(k\),让你计数

另一个例子是 the maximum degree of nesting of constructions in a recursive structure (typically, the height of a tree). 制定了树的节点数\(n\)和树的的高度\(h\),让你计数

面对这样的问题,(传统的)BGF无能为力。

III.8.1 largest components

例子1 decomposition of permutations

the cycle decomposition of permutations translated by

\[P(z)=\exp \left(\log \frac{1}{1-z}\right)
\]

使用truncation后,得到the EGF of permutations with longest cycle≤ b

\[P^{\langle b\rangle}(z)=\exp \left(\frac{z}{1}+\frac{z^{2}}{2}+\cdots+\frac{z^{b}}{b}\right)
\]

by the way,the EGF of permutations with smallest cycle of size > b

\[\begin{aligned}
\exp(\log \frac{1}{1-z}-\frac{z}{1}-\frac{z^{2}}{2}-\cdots-\frac{z^{b}}{b})=\frac{1}{1-z}\exp(-\frac{z}{1}-\frac{z^{2}}{2}-\cdots-\frac{z^{b}}{b})
\end{aligned}
\]

例子2 words over an m–ary alphabet

the EGF of words over an m–ary alphabet

\[W(z)=(e^z)^m
\]

使用truncation后,得到the EGF of words such that each letter occurs at most b times

\[W^{(b)}(z)=\left(1+\frac{z}{1 !}+\frac{z^{2}}{2 !}+\cdots+\frac{z^{b}}{b !}\right)^{m}
\]

例子3 set partitions

the EGF of set partitions

\[S(z)=exp(e^z-1)
\]

the EGF of set partitions with largest block of size at most b

\[S^{\langle b\rangle}(z)=\exp \left(\frac{z}{1 !}+\frac{z^{2}}{2 !}+\cdots+\frac{z^{b}}{b !}\right)
\]

例子4 the longest run in a sequence of binary draws

\(\mathcal{W}=\operatorname{SEQ}(a) \cdot \operatorname{SEQ}(b \operatorname{SEQ}(a))\)这么写有点正则的感觉,比如aabbbaabaa分解过来就是 aa|b|b|baa|baa

III.8.2 Height

例子1 plane trees

general plane trees定义是这样的

\[\mathcal{G}=\mathcal{N} \times \operatorname{SEQ}(\mathcal{G}) \quad \text { so that } \quad G(z)=\frac{z}{1-G(z)}
\]

定义一个树的高度是最长的分支(branch)的边的个数,那么the set of trees of height\(\leq h\) 满足如下的递归关系

\[\mathcal{G}^{[0]}=\mathcal{N}, \mathcal{G}^{[h+1]}=\mathcal{N} \times \operatorname{SEQ}\left(\mathcal{G}^{[h]}\right)
\]

对应的OGF满足

\[G^{[-1]}(z)=0, G^{[0]}(z)=z, G^{[h+1]}(z)=\frac{z}{1-G^{[h]}(z)}
\]

展开得到(别问连分数怎么打的,问就是\frac套\frac)

\[G^{[h]}(z)=\frac{z}{1-\frac{z}{1-\frac{z}{\frac{\ddots}{1-z}}}}
\]

例子2 plane binary trees

平面二叉树定义如下

\[\mathcal{B}=\mathcal{Z}+\mathcal{B} \times \mathcal{B} \quad \text { so that } \quad B(z)=z+(B(z))^{2}
\]

递归关系是

\[B^{[0]}(z)=z, B^{[h+1]}(z)=z+\left(B^{[h]}(z)\right)^{2}
\]

得到

\[B^{[h]}(z)=z+\left(z+\left(z+(\cdots)^{2}\right)^{2}\right)^{2}
\]

例子3 Cayley trees

CayleyTree词条 所有非叶子节点的度都为\(n\)的树叫n-CayleyTree

Cayley树定义方程

\[\mathcal{T}=\mathcal{Z} \star \operatorname{SET}(\mathcal{T}) \quad \text { so that } \quad T(z)=z e^{T(z)}
\]

有界高度的CayleyTrees的EGF的递归关系

\[T^{[0]}(z)=z, T^{[h+1]}(z)=z e^{T^{[h]}(z)}
\]

得到\(T^{[h]}(z)\)的"连指数“形式

\[T^{[h]}(z)=z e^{z e^{z e^{\cdot^{\cdot^{\cdot^{ze^z}}}}} }
\]

III 8.3 Averages and moments

没看懂


资料来自网络

书用的是Analytic Combinatorics by Philippe Flajolet, Robert Sedgewick

MGF multivariate generating function 多变量生成函数的更多相关文章

  1. 矩量母函数(Moment Generating Function,mgf,又称:动差生成函数)

    在统计学中,矩又被称为动差(Moment).矩量母函数(Moment Generating Function,简称mgf)又被称为动差生成函数. 称exp(tξ)的数学期望为随机变量ξ的矩量母函数,记 ...

  2. 【转】母函数(Generating function)详解 — TankyWoo(红色字体为批注)

    母函数(Generating function)详解 - Tanky Woo 在数学中,某个序列的母函数(Generating function,又称生成函数)是一种形式幂级数,其每一项的系数可以提供 ...

  3. 母函数(Generating function)详解

    母函数(Generating function)详解 在数学中,某个序列的母函数(Generating function,又称生成函数)是一种形式幂级数,其每一项的系数可以提供关于这个序列的信息.使用 ...

  4. polynomial&generating function学习笔记

    生成函数 多项式 形如$\sum_{i=0}^{n}a_i x^i$的代数式称为n阶多项式 核函数 {ai}的核函数为f(x),它的生成函数为sigma(ai*f(i)*x^i) 生成函数的加减 {a ...

  5. 读书笔记 1 of Statistics :Moments and Moment Generating Functions (c.f. Statistical Inference by George Casella and Roger L. Berger)

    Part 1: Moments Definition 1 For each integer $n$, the nth moment of $X$, $\mu_n^{'}$ is \[\mu_{n}^{ ...

  6. 母函数(Generation Function) 入门 + 模板

    转自:母函数 入门 + 模板  感谢 在数学中,某个序列的母函数(Generating function,又称生成函数)是一种形式幂级数,其每一项的系数可以提供关于这个序列的信息.使用母函数解决问题的 ...

  7. 生成函数(TBC)

    生成函数 生成函数 (Generating Function) 的应用简单来说在于研究未知(通项)数列规律,用这种方法在给出递推式的情况下求出数列的通项. 对于一个数列 aaa,称f(x)=∑i=0n ...

  8. [zz] 混合高斯模型 Gaussian Mixture Model

    聚类(1)——混合高斯模型 Gaussian Mixture Model http://blog.csdn.net/jwh_bupt/article/details/7663885 聚类系列: 聚类( ...

  9. HDU 2082 母函数模板题

    找单词 Time Limit: 1000MS   Memory Limit: 32768KB   64bit IO Format: %I64d & %I64u Submit Status De ...

  10. 整数划分 Integer Partition(一)

    话说今天百度面试,可能是由于我表现的不太好,面试官显得有点不耐烦,说话的语气也很具有嘲讽的意思,搞得我有点不爽.Whatever,面试中有问到整数划分问题,回答这个问题过程中被面试官搞的不胜其烦,最后 ...

随机推荐

  1. sign签名

    $sign = array( 'ip'=>'1.15.23.31' // array('ip'=>'2.34.45.34'), ); $ip = setSign($sign); for ( ...

  2. HTML——VSCODE配置笔记

    # 使用VSCODE编辑前端代码 ### 1.问题一:无法根据!快速生成html标准代码 (1).首先看文件命名是否出错,即文件名后缀名.html (2).第一步没出错,就在新建文件的编辑状态下拨动C ...

  3. IDEA初步使用Maven

    Maven使用 Maven环境配置 下载maven,解压,放在一个没有中文的路径下 打开系统环境变量配置 添加MAVEN_HOME ,其路径为maven所在路径 E:\software\apache- ...

  4. DorisSQL与MySQL函数对照 差异篇

    ## 1.日期函数### 时区.```mysql -> convert_tz(dt,from_tz,to_tz)doris -> CONVERT_TZ(DATETIME dt, VARCH ...

  5. vue 封装时间格式化和number精确度

    //format.js 公用js /** * Parse the time to string * @param {(Object|string|number)} time * @param {str ...

  6. WinCC插件制作教程

    目录 插件的编写 插件的使用 参考资料 Creation of .NET Controls 109759944_Prepare.NetControls_DOC_en.pdf 插件的编写 创建插件项目, ...

  7. Python + Selenium + Microsoft Edge浏览器运行环境搭建及配置无界面模式

    介绍 在python中用selenium驱动Microsoft Edge(Chromium版)浏览器,并设置headless模式,也可以参考微软官方指导文档,更全更清晰 安装selenium 可以通过 ...

  8. C++ 复习函数的基本知识

    C++ 复习函数的基本知识 要使用 C++ 函数,必须完成如下工作: 1. 提供函数定义: 2. 提供函数原型: 3. 调用函数. 例子: #include <iostream> usin ...

  9. Jmeter-接口测试(一)

    一.接口测试分类 内部接口 外部接口--被测系统调用外部     --系统对外部提供的接口 接口测试重点:接口参数传递的正确性.接口功能的正确性.输出结果正确性.各种异常容错处理.权限控制.分页.调用 ...

  10. error: You must be logged in to the server (Unauthorized) 问题处理

    故障现象: 执行kubectl 命令时: 提示"error: You must be logged in to the server (Unauthorized)" 分析: 权限问 ...