ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

[ 具体数学 ] 和式与封闭式

2020-01-25 20:56:21  阅读:394  来源: 互联网

标签:right 封闭式 beta 具体 therefore alpha 数学 aligned gamma


和式

记号

符号:\(\huge\sum\)

eg.

  1. \(a_1 + a_2 + \cdots + a_{k-1} + a_k + a_{k+1}+\cdots +a_{n-1}+a_n = \sum_{k=1}^na_k=\sum_{1\leq k \leq n} a_k\)
  2. \(\sum_{\substack{1\leq k\leq n \\ \text{k } prime}}\)

成套方法

解决将和式转为封闭式的方法

前\(n\)个自然数的和

命题

将\(\sum_{k=1}^nk转为封闭式\)

求解

方法:成套方法

  1. 转为递归式

令\(S(n)=\sum_{k=1}^nk\)
不难看出,\(S(n)=S(n-1)+n\)

  1. 一般化

令\(R(n)\)为\(S(n)\)的一般形式
即\(R(0)=\alpha \qquad R(n)=R(n-1)+\beta n+\gamma\)

(1) 令\(R(n)=1\)

\[\therefore R(0)=1\]

\[\therefore \alpha = 1\]

\[\because R(n)=R(n-1)+\beta n+\gamma\]

\[\therefore 1=1+\beta n + \gamma\]

\[ \left\{ \begin{aligned} \alpha = 1 \\ \beta = 0 \\ \gamma = 0 \end{aligned} \right. \]

(2) 令\(R(n)=n\)

\[\therefore R(0) = 0\]

\[\therefore \alpha = 0\]

\[\because R(n)=R(n-1)+\beta n+\gamma\]

\[\therefore n = (n-1)+\beta n + \gamma\]

\[ \left\{ \begin{aligned} \alpha = 0 \\ \beta = 0 \\ \gamma = 1 \end{aligned} \right. \]

(3) 令\(R(n) = n^2\)

\[\therefore R(0) = 0\]

\[\therefore \alpha = 0\]

\[\because R(n)=R(n-1)+\beta n+\gamma\]

\[\therefore n^2 = (n-1)^2+\beta n + \gamma\]

\[\therefore n^2 = n^2 - 2n + 1+\beta n + \gamma\]

\[\therefore -1 =(\beta - 2) n + \gamma\]

\[ \left\{ \begin{aligned} \alpha = 0 \\ \beta = 2 \\ \gamma = -1 \end{aligned} \right. \]

3.计算系数

令\(R(n)=x\alpha + y\beta + z\theta\)

(1) 当\(R(n) = 1\)时:

\[\because\left\{ \begin{aligned} \alpha = 1 \\ \beta = 0 \\ \gamma = 0 \end{aligned} \right. \]

\[\therefore x = 1\]

(2) 当\(R(n) = n\)时:

\[\because\left\{ \begin{aligned} \alpha = 0 \\ \beta = 0 \\ \gamma = 1 \end{aligned} \right. \]

\[\therefore z = n\]

(3) 当\(R(n) = n^2\)时:

\[ \left\{ \begin{aligned} \alpha = 0 \\ \beta = 2 \\ \gamma = -1 \end{aligned} \right. \]

\[\therefore 2y - z = n^2\]

综上:

\[ \left\{ \begin{aligned} x = 1 \\ z = n \\ 2y - z = n^2 \end{aligned} \right. \]

解得
\[ \left\{ \begin{aligned} x = 1 \\ y = \frac{n\cdot (n+1)}{2} \\ z = n \end{aligned} \right. \]

4.具体化

\[S(n) = S(n-1) + n\]

令\(P(n)\)为当\(\beta = 1, \gamma = 0\)时\(R(n)\)的值

\[\therefore P(n) = P(n-1) + n = S(n)\]

\(\therefore S(n)\)为当\(\beta = 1, \gamma = 0\)时\(R(n)\)的值

\[\therefore S(n) = y\]

\[\therefore S(n) = \frac{n \cdot (n+1)}{2}\]

标签:right,封闭式,beta,具体,therefore,alpha,数学,aligned,gamma
来源: https://www.cnblogs.com/zhangtianli/p/12233360.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有