Forgot password?
 Create new account
Search
View: 112|Reply: 20

部分分式分解唯一吗?一般情况会有多少项?

[Copy link]

413

Threads

1558

Posts

110K

Credits

Credits
11498

Show all posts

abababa Post time 2024-4-19 16:00 |Read mode
本帖最后由 abababa 于 2024-4-19 19:10 编辑 设$\frac{f(x)}{g(x)}$是一个非零真分式,其中$f(x),g(x)$都是多项式,次数分别是$m,n$且$m<n$。将这个真分式做部分分式分解(Mathematica里是用Apart命令来做),那么一般情况会分出多少项?这种分解是唯一的吗?

这个分解出的项数和数域有关吗?比如Apart[(x^2 + 1)/(x^3 - 1)],软件计算出的是两项,但如果在复数域,显然分母是二次的那个还能分解。而在复数域,因为分解出来的分母都是一次式,如果$g(x)$有重根$a$,例如二重根,那对应的分母项也是$\frac{1}{x-a},\frac{1}{(x-a)^2}$这样的两项,把分子是零的情况也考虑进去(例如$\frac{1}{x^2}$的部分分式分解,应该是$\frac{0}{x}+\frac{1}{x^2}$的形式,有一个分子是零的项,因为一般的分母是二次式的真分式,做部分分式分解时就会有一个分母是一次式的项,所以这里也考虑进去),总共就是$\deg(g)=n$项。这时分解是唯一的吗?

还有一个问题:如果$\frac{f(x)}{g(x)}$是既约分式($f,g$互素),并且$g(x)$里有一个平方因子(或者其它次幂),比如$g(x)=(x-1)^2g_0(x)$,这时的部分分式分解中,是不是一定包含$\frac{1}{(x-1)^2}$这样的项(即这项的系数一定非零)?

觉得这个应该是“多项式”标签里的,但是没有那个,最接近的是“函数”,但又觉得和函数题差很多。

3150

Threads

8388

Posts

610K

Credits

$\style{scale:11;fill:#eff}꩜$

Credits
65413
QQ

Show all posts

hbghlyj Post time 2024-4-19 18:58
abababa 发表于 2024-4-19 08:00
这时分解是唯一的吗?

Math Methods: PartialFractionsAndMore.pdf看到一个公式:
A direct computation of the partial fraction coefficients is possible instead of using the lengthy algebraic approach that most of you are familiar with. For instance, assume that you have a fraction $P (x)/Q(x)$, where $Q(x) = (x − α_1)(x − α_2) \dots(x − α_n )$. Assume that $\deg P ≤ \deg Q$. If that is not the case long division of $P (x)$ by $Q(x)$ needs to be performed first and the formula described below can be used on the remainder from the long division.
Now the expansion of $P (x)/Q(x)$ as a sum of partial fractions is done by the following formula:
$$\frac{P(x)}{Q(x)}=\sum_{i=1}^{n} \frac{P\left(\alpha_{i}\right)}{Q^{\prime}\left(\alpha_{i}\right)} \frac{1}{\left(x-\alpha_{i}\right)}$$


实际上就是计算留数:
H. A. Priestley, Complex Analysis, 2nd edition (2003) page 214
Covert simple pole If $f(z)=h(z) / k(z)$, where $h, k \in \mathrm{H}(\mathrm{D}(a ; r)), h(a) \neq 0$, $k(a)=0$, and $k^{\prime}(a) \neq 0$, then
$$
\operatorname{res}\{f(z) ; a\}=\frac{h(a)}{k^{\prime}(a)} \text {. }
$$
We prove this as follows:
$$
\begin{array}{rlrl}
\operatorname{res}\{f(z) ; a\} & =\lim _{z \rightarrow a}(z-a) \frac{h(z)}{k(z)} & & \text { (by (R)) } \\
& =h(a) \lim _{z \rightarrow a} \frac{z-a}{k(z)-k(a)} & & \text { (by the algebra of limits) } \\
& =\frac{h(a)}{k^{\prime}(a)} . &
\end{array}
$$

3150

Threads

8388

Posts

610K

Credits

$\style{scale:11;fill:#eff}꩜$

Credits
65413
QQ

Show all posts

hbghlyj Post time 2024-4-19 18:59

部分分数快捷方式(用于分母中的二次不可约因式)

Partial Fractions shortcut (for quadratic irreducible factor in denominator)
$$\frac{3x+6}{x^2+x+1}\mod(x-1)^2\equiv\frac{3x+6}{3x}=1+\frac2x\equiv1+\frac2x(-x^2+2x)=5-2x=3-2(x-1)$$
$$\frac{3x+6}{(x-1)^2}\mod(x^2+x+1)\equiv\frac{3x+6}{-3x}=-1-\frac2x\equiv-1-\frac2x(-x^2-x)=2x+1$$
So$$\frac{3x+6}{(x-1)^2(x^2+x+1)}=-\frac2{x-1}+\frac{3}{(x-1)^2}+\frac{2x+1}{x^2+x+1}$$
Wolfram Language code:
Apart[(6 + 3 x)/((-1 + x)^2 (1 + x + x^2))]
WolframAlpha:
$\frac3{(-1 + x)^2} - \frac2{-1 + x} + \frac{1 + 2 x}{1 + x + x^2}$

3150

Threads

8388

Posts

610K

Credits

$\style{scale:11;fill:#eff}꩜$

Credits
65413
QQ

Show all posts

hbghlyj Post time 2024-4-19 19:00

部分分式$\frac{z}{(z-1)^2(z-2)}$ 使用级数展开的技巧

\[f(z)=\frac{z}{(z-1)^2(z-2)}=\frac{A}{z-1}+\frac{B}{(z-1)^2}+\frac{C}{z-2}\]
为了获得 $C$,我们乘以 $z-2$ 并让 $z=2$。
\[C=\left.f(z)(z-2)\right|_{z=2}=\left.\frac{z}{(z-1)^2}\right|_{z=2}=2\]
同样,为了获得 $B$,我们乘以 $(z-1)^2$ 并让 $z=1$。
\[B=\left.f(z)(z-1)^2\right|_{z=1}=\left.\frac{z}{z-2}\right|_{z=1}=-1\]
为了获得 $A$,(使用级数展开的技巧)\begin{align*}
A&=[z^0]\left(\frac{z}{(z-1)^2(z-2)}-\frac{1}{(z-1)^2}-\frac{2}{z-2}\right)\tag{3}\\
&=[z^0]\left(-\frac{1}{(z-1)^2}-\frac{1}{1-\frac{z}{2}}\right)\\
&=-1-1\\
&=-2
\end{align*}解释:
第一项 $\frac{z}{(z-1)^2(z-2)}$ 是 $z$ 乘以两个二项式级数的乘积,因此得到的级数的常数项为 0。
第二项 $[z^0]\frac{1}{(z-1)^2}=1$ 因为二项式级数的常数项为 $1$,同理第三项 $[z^0]\frac{1}{1-\frac{z}{2}}=1$。
最后$A=0−1−1=−2$。
math.stackexchange.com/questions/1864117
于是\[f(z)=\frac{z}{(z-1)^2(z-2)}=-\frac{2}{z-1}-\frac{1}{(z-1)^2}+\frac{2}{z-2}\]

3150

Threads

8388

Posts

610K

Credits

$\style{scale:11;fill:#eff}꩜$

Credits
65413
QQ

Show all posts

hbghlyj Post time 2024-4-19 19:09
abababa 发表于 2024-4-19 08:00
如果$\frac{f(x)}{g(x)}$是既约分式($f,g$互素),并且$g(x)$里有一个平方因子(或者其它次幂),比如$g(x)=(x-1)^2g_0(x)$,这时的部分分式分解中,是不是一定包含$\frac{1}{(x-1)^2}$这样的项?

假设$g_0(1)\ne0$,则$\frac{1}{(x-1)^2}$的系数等于$\frac{f(1)}{g_0(1)}$

413

Threads

1558

Posts

110K

Credits

Credits
11498

Show all posts

 Author| abababa Post time 2024-4-19 19:13
hbghlyj 发表于 2024-4-19 18:58
在Math Methods: PartialFractionsAndMore.pdf看到一个公式:
A direct computation of the partial fract ...

留数只能是负一次幂那个项的系数吧,要是$g(x)$本身含有平方因子、立方因子这种,就是有重根,分解式里$\frac{1}{(x-a)^2}$的系数就不能用留数来算了。

413

Threads

1558

Posts

110K

Credits

Credits
11498

Show all posts

 Author| abababa Post time 2024-4-19 19:19
hbghlyj 发表于 2024-4-19 19:09
假设$g_0(1)\ne0$,则$\frac{1}{(x-1)^2}$的系数等于$\frac{f(1)}{g_0(1)}$

比如
\[\frac{f(x)}{g(x)}=\frac{f(x)}{g_0(x)(x-1)^2}=c_0+\frac{c_1}{x-1}+\frac{c_2x+d_2}{(x-1)^2}+\frac{f_0(x)}{g_0(x)}\]

怎么证明$c_2x+d_2\neq0$?

3150

Threads

8388

Posts

610K

Credits

$\style{scale:11;fill:#eff}꩜$

Credits
65413
QQ

Show all posts

hbghlyj Post time 2024-4-19 19:21
abababa 发表于 2024-4-19 11:19
比如
\[\frac{f(x)}{g(x)}=\frac{f(x)}{g_0(x)(x-1)^2}=c_0+\frac{c_1}{x-1}+\frac{c_2x+d_2}{(x-1)^2}+\frac{f_0(x)}{g_0(x)}\]

怎么证明$c_2x+d_2\neq0$?


$\frac{c_2x+d_2}{(x-1)^2}=\frac{c_2(x-1)+c_2+d_2}{(x-1)^2}=\frac{c_2}{x-1}+\frac{c_2+d_2}{(x-1)^2}$

3150

Threads

8388

Posts

610K

Credits

$\style{scale:11;fill:#eff}꩜$

Credits
65413
QQ

Show all posts

hbghlyj Post time 2024-4-19 19:23
abababa 发表于 2024-4-19 08:00
觉得这个应该是“多项式”标签里的,但是没有那个,最接近的是“函数”,但又觉得和函数题差很多。


不仅是多项式,任意的 亚纯函数 都行吧。
en.wikipedia.org/wiki/Mittag-Leffler%27s_theorem
express any meromorphic function as a sum of partial fractions.

Here are some examples of pole expansions of meromorphic functions:
$ {\displaystyle \tan(z)=\sum _{n=0}^{\infty }{\frac {8z}{(2n+1)^{2}\pi ^{2}-4z^{2}}}} $
$ {\displaystyle \csc(z)=\sum _{n\in \mathbb {Z} }{\frac {(-1)^{n}}{z-n\pi }}={\frac {1}{z}}+2z\sum _{n=1}^{\infty }(-1)^{n}{\frac {1}{z^{2}-(n\,\pi )^{2}}}} $
$ {\displaystyle \sec(z)\equiv -\csc \left(z-{\frac {\pi }{2}}\right)=\sum _{n\in \mathbb {Z} }{\frac {(-1)^{n-1}}{z-\left(n+{\frac {1}{2}}\right)\pi }}=\sum _{n=0}^{\infty }{\frac {(-1)^{n}(2n+1)\pi }{(n+{\frac {1}{2}})^{2}\pi ^{2}-z^{2}}}} $
$ {\displaystyle \cot(z)\equiv {\frac {\cos(z)}{\sin(z)}}=\lim _{N\to \infty }\sum _{n=-N}^{N}{\frac {1}{z-n\pi }}={\frac {1}{z}}+2z\sum _{k=1}^{\infty }{\frac {1}{z^{2}-(k\,\pi )^{2}}}} $
$ {\displaystyle \csc ^{2}(z)=\sum _{n\in \mathbb {Z} }{\frac {1}{(z-n\,\pi )^{2}}}} $
$ {\displaystyle \sec ^{2}(z)={\frac {d}{dz}}\tan(z)=\sum _{n=0}^{\infty }{\frac {8((2n+1)^{2}\pi ^{2}+4z^{2})}{((2n+1)^{2}\pi ^{2}-4z^{2})^{2}}}} $
$ {\displaystyle {\frac {1}{z\sin(z)}}={\frac {1}{z^{2}}}+\sum _{n\neq 0}{\frac {(-1)^{n}}{\pi n(z-\pi n)}}={\frac {1}{z^{2}}}+\sum _{n=1}^{\infty }{(-1)^{n}}{\frac {2}{z^{2}-(n\,\pi )^{2}}}} $

3150

Threads

8388

Posts

610K

Credits

$\style{scale:11;fill:#eff}꩜$

Credits
65413
QQ

Show all posts

hbghlyj Post time 2024-4-19 19:26
abababa 发表于 2024-4-19 11:13
留数只能是负一次幂那个项的系数吧,要是$g(x)$本身含有平方因子、立方因子这种,就是有重根,

是的。
$(x-1)^{-2},(x-1)^{-3},\dots$的系数是$(x-1)\frac{f(x)}{g(x)},(x-1)^2\frac{f(x)}{g(x)},\dots$在1的留数吧

3150

Threads

8388

Posts

610K

Credits

$\style{scale:11;fill:#eff}꩜$

Credits
65413
QQ

Show all posts

hbghlyj Post time 2024-4-19 19:33
Mittag-Leffler's Expansion Theorem
Let $f$ be a meromorphic function that:
  $f$ has only simple poles
  $f$ is continuous, or has a removable singularity, at 0
$\ldots$
Then:
  $\displaystyle f(\zeta) = f(0) + \sum_{n \mathop \in X} \operatorname{Res} (f,n) \left(\frac 1 {\zeta - n} + \frac 1 n\right)$

3150

Threads

8388

Posts

610K

Credits

$\style{scale:11;fill:#eff}꩜$

Credits
65413
QQ

Show all posts

hbghlyj Post time 2024-4-19 19:40
相关帖子:Herglotz技巧
How do I find the pole expansion of the meromorphic function cot(z)
with Mittag-Leffler theorem?


notes on bernoulli numbers and euler's summation formula
by M WILDON · 2006 — The authors explain that using Euler's formula for $\cot z$ (which has a nice elementary proof via the so-called. Herglotz trick), $z \cot z=1-2 \sum_{k \geq 1} \frac{z^{2}}{k^{2} \pi^{2}-z^{2}}$

3150

Threads

8388

Posts

610K

Credits

$\style{scale:11;fill:#eff}꩜$

Credits
65413
QQ

Show all posts

hbghlyj Post time 2024-4-19 19:41

$π/\sin (π z)$ 展开的证明?

我对问题 3c 有疑问(Mittag-Leffler's theorem)
Explain why the following sequence of functions
$$
f_n(z)=\sum_{k=-n}^n \frac{(-1)^k}{(z+k)^2}
$$
converges to a holomorphic function $f(z)$ on $ℂ∖ ℤ$ as $n → ∞$. Explain why $f(z)$ is periodic and then find a closed form expression for it. Use this expression to compute
$$
\sum_{k=1}^{∞} \frac{(-1)^k}{k^2}
$$

参考答案是
The functions $f_n(z)$ are clearly holomorphic in the complex plane except at $2 n+1$ points where the poles are located. Now we can choose a disk with center not among these
points, and small enough radius. The M-test says that the series converge uniformly. The function $f_n(z)$ has double poles at integer values $z=-k, ⋯, k$ with residue $(-1)^k$. In the limit $n → ∞$ we see the function is invariant under $z → z+2$. A way to find the result is by noting that $f(z)=-g'(z)$, where $g(z)$ has single poles with residue $(-1)^k$. Then by periodicity it follows $g(z)=π / \sin (π z)$. Taking the derivative it follows $$
f(z)=\frac{π^2}{\sin (π z) \tan (π z)}
$$
To solve the last part we compute the expansion of this function around $z=0$. We get
$$
f(z)=\frac{1}{z^2}-\frac{π^2}{6}+⋯
$$
The quadratic pole corresponds to the term $k=0$ in the sum defining $f(z)$ as a sum. The finite part corresponds to twice the sum we are asked to compute. We find
$$
\sum_{k=1}^{∞} \frac{(-1)^k}{k^2}=-\frac{π^2}{12}
$$
级数$g(z)=\sum_{k=-\infty}^\infty \frac{(-1)^k}{z+k}$
红色部分如何由周期性得出$g(z)=π / \sin (π z)$
两个亚纯函数的极点相同、留数相等,就能推出它们相等
$type Q3.pdf (314.96 KB, Downloads: 0)
Extract page 3 from questions:
java -jar pdfbox-app-3.0.0-alpha3.jar split -startPage=3 -endPage=3 -i=A2.pdf
Extract page 7,8 from solutions:
java -jar pdfbox-app-3.0.0-alpha3.jar split -startPage=7 -endPage=8 -i=A2_solutions2018.pdf
Cut off 82pt from the top margin:
pdfcrop --bbox "0 00 595 800" A2Q3.pdf
Merge:
java -jar pdfbox-app-3.0.0-alpha3.jar merge -i=A2-1.pdf -i=A2Q3-crop.pdf --output=Q3.pdf

413

Threads

1558

Posts

110K

Credits

Credits
11498

Show all posts

 Author| abababa Post time 2024-4-19 19:42
hbghlyj 发表于 2024-4-19 19:21
$\frac{c_2x+d_2}{(x-1)^2}=\frac{c_2(x-1)+c_2+d_2}{(x-1)^2}=\frac{c_2}{x-1}+\frac{c_2+d_2}{(x-1)^2} ...

谢谢,我明白了,这里要用到$\gcd(f,g)=1$,这样$f(a)\neq0$,最后能得到系数非零。

413

Threads

1558

Posts

110K

Credits

Credits
11498

Show all posts

 Author| abababa Post time 2024-4-19 19:45
hbghlyj 发表于 2024-4-19 18:59
Partial Fractions shortcut (for quadratic irreducible factor in denominator)
$$\frac{3x+6}{x^2+x+1}\ ...

比如这个例子,分母是四次的,但是在实数域上只分解出三个项。这个有没有什么规律?在实数域上的分解也是唯一的吗?

3150

Threads

8388

Posts

610K

Credits

$\style{scale:11;fill:#eff}꩜$

Credits
65413
QQ

Show all posts

hbghlyj Post time 2024-4-20 04:55

怎樣展開$\tan(z)$

The simplest meromorphic functions with an infinite number of poles are the non-entire trigonometric functions. As an example, $\tan(z)$ is meromorphic with poles at $(n + \frac{1}{2})\pi$, $n = 0, \pm 1, \pm 2, ...$ The contours $\Gamma_k$ will be squares with vertices at $\pm \pi k \pm \pi k i$ traversed counterclockwise, $k > 1$, which are easily seen to satisfy the necessary conditions.

On the horizontal sides of $\Gamma_k$,

\[z = t \pm \pi k i,\ \ t \in [-\pi k, \pi k],\]

so

\[\lvert\tan(z)\rvert^2 = \frac{\sin^2(t)\cosh^2(\pi k) + \cos^2(t)\sinh^2(\pi k)}{\cos^2(t)\cosh^2(\pi k) + \sin^2(t)\sinh^2(\pi k)}\]

$\sinh(x) < \cosh(x)$ for all real $x$, which yields

\[\lvert\tan(z)\rvert^2 < \coth^2(\pi k)\]

For $x > 0$, $\coth(x)$ is continuous, decreasing, and bounded below by 1, so it follows that on the horizontal sides of $\Gamma_k$, $\lvert\tan(z)\rvert < \coth(\pi)$. Similarly, it can be shown that $\lvert\tan(z)\rvert < 1$ on the vertical sides of $\Gamma_k$.

With this bound on $\lvert\tan(z)\rvert$ we can see that

\[\oint_{\Gamma_k} \left|\frac{\tan(z)}{z}\right| dz \le \operatorname{length}(\Gamma_k) \max_{z\in \Gamma_k} \left|\frac{\tan(z)}{z}\right| < 8k \pi \frac{\coth(\pi)}{k\pi} = 8\coth(\pi) < \infty.\]

That is, the maximum of $\lvert\frac{1}{z}\rvert$ on $\Gamma_k$ occurs at the minimum of $\lvert z\rvert$, which is $k\pi$.

Therefore $p = 0$, and the partial fraction expansion of $\tan(z)$ looks like

\[\tan(z) = \sum_{k=0}^{\infty} \left(\operatorname{PP}(\tan(z); z = \lambda_k) + \operatorname{Res}_{z=\lambda_k} \frac{\tan(z)}{z}\right).\]

The principal parts and residues are easy enough to calculate, as all the poles of $\tan(z)$ are simple and have residue -1:

\[\operatorname{PP}(\tan(z); z = (n + \frac{1}{2})\pi) = \frac{-1}{z - (n + \frac{1}{2})\pi}\]
\[\operatorname{Res}_{z=(n + \frac{1}{2})\pi} \frac{\tan(z)}{z} = \frac{-1}{(n + \frac{1}{2})\pi}\]

We can ignore $\lambda_0 = 0$, since both $\tan(z)$ and $\frac{\tan(z)}{z}$ are analytic at 0, so there is no contribution to the sum, and ordering the poles $\lambda_k$ so that $\lambda_1 = \frac{\pi}{2}, \lambda_2 = \frac{-\pi}{2}, \lambda_3 = \frac{3\pi}{2}$, etc., gives

\[\tan(z) = \sum_{k=0}^{\infty} \left[\left(\frac{-1}{z - (k + \frac{1}{2})\pi} - \frac{1}{(k + \frac{1}{2})\pi}\right) + \left(\frac{-1}{z + (k + \frac{1}{2})\pi} + \frac{1}{(k + \frac{1}{2})\pi}\right)\right]\]
\[\tan(z) = \sum_{k=0}^{\infty} \frac{-2z}{z^2 - (k + \frac{1}{2})^2\pi^2}\]

3150

Threads

8388

Posts

610K

Credits

$\style{scale:11;fill:#eff}꩜$

Credits
65413
QQ

Show all posts

hbghlyj Post time 2024-4-20 04:58
abababa 发表于 2024-4-19 11:45
比如这个例子,分母是四次的,但是在实数域上只分解出三个项。这个有没有什么规律?在实数域上的分解也是 ...


实数上也惟一吧。先在複數上分解,再把分母是共軛虛数的合併成正定二次式的分母。

3150

Threads

8388

Posts

610K

Credits

$\style{scale:11;fill:#eff}꩜$

Credits
65413
QQ

Show all posts

hbghlyj Post time 2024-4-20 05:10
hbghlyj 发表于 2024-4-19 11:23
$ {\displaystyle \csc(z)=\sum _{n\in \mathbb {Z} }{\frac {(-1)^{n}}{z-n\pi }}={\frac {1}{z}}+2z\sum _{n=1}^{\infty }(-1)^{n}{\frac {1}{z^{2}-(n\,\pi )^{2}}}} $


用$\cot$的可以推出$\csc$的:
$\csc(z)=\cot(z/2)-\cot(z)=\displaystyle \sum _{n\inZ}{\frac {2}{z-2n\pi }}- \sum _{n\inZ}{\frac {1}{z-n\pi }}=  \sum _{n\inZ}{\frac {(-1)^n}{z-n\pi }}$

413

Threads

1558

Posts

110K

Credits

Credits
11498

Show all posts

 Author| abababa Post time 2024-4-20 21:02
hbghlyj 发表于 2024-4-20 04:58
实数上也惟一吧。先在複數上分解,再把分母是共軛虛数的合併成正定二次式的分母。 ...

是的,这个我弄明白了。

这个问题是我在有理函数积分时遇到的,还遇到一个问题:比如把有理式$g(x)$写成$\frac{u}{v},\gcd(u,v)=1$的形式,其中$u,v$都是多项式,那么分部积分要对它求导,$(\frac{u}{v})'=\frac{vu'-uv'}{v^2}$,这个形式的部分分式展开,展开式中一定存在分母是平方的项吗?

先化简一下问题,因为$\frac{vu'-uv'}{v^2}=\frac{u'}{v}-\frac{uv'}{v^2}$,而前面的$\frac{u'}{v}$一定能在$\mathbb{C}$上展开成一次式的分母形式,所以只要考虑$\frac{uv'}{v^2}$的展开情况,并且当$v$不可约时有$\gcd(v,v')=1$,这样$v$中至少有一个因子$(x-a)$是$u,v'$里都没有的,这样根据8楼的证明,展开式里就得有$\frac{1}{(x-a)^2}$这一项。所以只要考虑$\gcd(v,v')\neq1$的情况。

另外这帖我开始以为只是多项式的内容,但解决起来需要很多高等数学的内容,还请版主移到高等数学版块。@kuing

413

Threads

1558

Posts

110K

Credits

Credits
11498

Show all posts

 Author| abababa Post time 2024-4-20 21:36
abababa 发表于 2024-4-20 21:02
是的,这个我弄明白了。

这个问题是我在有理函数积分时遇到的,还遇到一个问题:比如把有理式$g(x)$写成 ...


我有点明白了,证明如下:
设$\gcd(v,v')=c(x)$,再设$v=c(x)k(x), v'=c(x)h(x)$,则$\gcd(h,k)=1$,由于$\gcd(u,v)=1$而$k\mid v, c\mid v$,因此$\gcd(u,k)=1, \gcd(u,c)=1$,于是$\frac{uv'}{v^2}=\frac{uch}{c^2k^2}=\frac{uh}{ck^2}$,设$\gcd(c,h)=t$,再设$h=th_0, c=tc_0$,则$\gcd(h_0,c_0)=1$。于是$\frac{uv'}{v^2}=\frac{uh_0}{c_0k^2}$,由$\gcd(u,c)=1$知$\gcd(u,c_0)=1$,由$\gcd(h,k)=1$知$\gcd(h_0,k)=1$,于是$\gcd(u,c_0)=\gcd(u,k)=\gcd(h_0,c_0)=\gcd(h_0,k)=1$,所以$\gcd(uh_0,c_0k^2)=1$。这样的话根据8楼的证明,在$\mathbb{C}$上将$\frac{uv'}{v^2}=\frac{uh_0}{c_0k^2}$作部分分式展开,它就必定含有$\frac{1}{[k(x)]^2}$的项。

或者这样证明:如果要求它不含这一项,则$k(x)$就是常数,这样$\deg(v)=\deg(ck)=\deg(c)\le\deg(ch)=\deg(v')$,但又有$\deg(v')\le\deg(v)$,所以$\deg(v)=\deg(v')$。然后这里有点疑问,$v$是非零常数的话,$\deg(v)=0$但$\deg(v')=\deg(0)=-\infty$,也不能相等,$v=0$的话,它就不能作分母,这是矛盾的。

手机版|悠闲数学娱乐论坛(第3版)

2025-3-6 03:39 GMT+8

Powered by Discuz!

× Quick Reply To Top Return to the list