- 注册时间
- 2008-11-26
- 最后登录
- 1970-1-1
- 威望
- 星
- 金币
- 枚
- 贡献
- 分
- 经验
- 点
- 鲜花
- 朵
- 魅力
- 点
- 上传
- 次
- 下载
- 次
- 积分
- 149507
- 在线时间
- 小时
|
发表于 2021-6-10 08:10:13
|
显示全部楼层
极值点存在无穷多个的情况
- Clear["Global`*"];(*mathematica11.2,win7(64bit)Clear all variables*)
- f=a*b+b*c+c*d+x*(a+b+c+d-0)+x1*(a+1)+x2*(b+1)+x3*(c+1)+x4*(d+1)
- ans=Solve[{
- D[f,{{a,b,c,d,x}}]==0,
- x1*(a+1)==0,
- x2*(b+1)==0,
- x3*(c+1)==0,
- x4*(d+1)==0
- },{a,b,c,d,x,x1,x2,x3,x4}]
- Grid[ans,Alignment->Left]
- (f/.ans)//FullSimplify
复制代码
极值点
\[\begin{array}{lllllllll}
b\to -1 & c\to -1 & d\to 2-a & x\to 1 & \text{x1}\to 0 & \text{x2}\to -a & \text{x3}\to a-2 & \text{x4}\to 0 & \text{} \\
a\to -1 & b\to -1 & c\to -1 & d\to 3 & x\to 1 & \text{x1}\to 0 & \text{x2}\to 1 & \text{x3}\to -3 & \text{x4}\to 0 \\
a\to -1 & b\to -1 & c\to \frac{1}{2} & d\to \frac{3}{2} & x\to -\frac{1}{2} & \text{x1}\to \frac{3}{2} & \text{x2}\to 1 & \text{x3}\to 0 & \text{x4}\to 0 \\
a\to -1 & b\to -1 & c\to 3 & d\to -1 & x\to 2 & \text{x1}\to -1 & \text{x2}\to -4 & \text{x3}\to 0 & \text{x4}\to -5 \\
a\to -1 & b\to 1 & c\to 1 & d\to -1 & x\to 0 & \text{x1}\to -1 & \text{x2}\to 0 & \text{x3}\to 0 & \text{x4}\to -1 \\
a\to -1 & b\to 3 & c\to -1 & d\to -1 & x\to 2 & \text{x1}\to -5 & \text{x2}\to 0 & \text{x3}\to -4 & \text{x4}\to -1 \\
a\to 0 & b\to -1 & c\to -1 & d\to 2 & x\to 1 & \text{x1}\to 0 & \text{x2}\to 0 & \text{x3}\to -2 & \text{x4}\to 0 \\
a\to 0 & b\to 0 & c\to 0 & d\to 0 & x\to 0 & \text{x1}\to 0 & \text{x2}\to 0 & \text{x3}\to 0 & \text{x4}\to 0 \\
a\to \frac{3}{2} & b\to \frac{1}{2} & c\to -1 & d\to -1 & x\to -\frac{1}{2} & \text{x1}\to 0 & \text{x2}\to 0 & \text{x3}\to 1 & \text{x4}\to \frac{3}{2} \\
a\to 2 & b\to -1 & c\to -1 & d\to 0 & x\to 1 & \text{x1}\to 0 & \text{x2}\to -2 & \text{x3}\to 0 & \text{x4}\to 0 \\
a\to 3 & b\to -1 & c\to -1 & d\to -1 & x\to 1 & \text{x1}\to 0 & \text{x2}\to -3 & \text{x3}\to 1 & \text{x4}\to 0 \\
\end{array}\]
极值
\[\left\{-1,-1,\frac{5}{4},-5,-1,-5,-1,0,\frac{5}{4},-1,-1\right\}\]
- Clear["Global`*"];(*mathematica11.2,win7(64bit)Clear all variables*)
- f=a*b+b*c+c*d+x*(a+b+c+d-0)+x1*(a+1)+x2*(b+1)+x3*(c+1)+x4*(d+1)
- ans=Solve[{
- D[f,{{a,b,c,d,x}}]==0,
- x1*(a+1)==0,
- x2*(b+1)==0,
- x3*(c+1)==0,
- x4*(d+1)==0
- },{a,b,c,d,x,x1,x2,x3,x4}];
- aaa=Prepend[#,f/.#]&/@ans
- Grid[aaa,Alignment->Left]
复制代码
合在一起
\[\begin{array}{llllllllll}
-1 & b\to -1 & c\to -1 & d\to 2-a & x\to 1 & \text{x1}\to 0 & \text{x2}\to -a & \text{x3}\to a-2 & \text{x4}\to 0 & \text{} \\
-1 & a\to -1 & b\to -1 & c\to -1 & d\to 3 & x\to 1 & \text{x1}\to 0 & \text{x2}\to 1 & \text{x3}\to -3 & \text{x4}\to 0 \\
\frac{5}{4} & a\to -1 & b\to -1 & c\to \frac{1}{2} & d\to \frac{3}{2} & x\to -\frac{1}{2} & \text{x1}\to \frac{3}{2} & \text{x2}\to 1 & \text{x3}\to 0 & \text{x4}\to 0 \\
-5 & a\to -1 & b\to -1 & c\to 3 & d\to -1 & x\to 2 & \text{x1}\to -1 & \text{x2}\to -4 & \text{x3}\to 0 & \text{x4}\to -5 \\
-1 & a\to -1 & b\to 1 & c\to 1 & d\to -1 & x\to 0 & \text{x1}\to -1 & \text{x2}\to 0 & \text{x3}\to 0 & \text{x4}\to -1 \\
-5 & a\to -1 & b\to 3 & c\to -1 & d\to -1 & x\to 2 & \text{x1}\to -5 & \text{x2}\to 0 & \text{x3}\to -4 & \text{x4}\to -1 \\
-1 & a\to 0 & b\to -1 & c\to -1 & d\to 2 & x\to 1 & \text{x1}\to 0 & \text{x2}\to 0 & \text{x3}\to -2 & \text{x4}\to 0 \\
0 & a\to 0 & b\to 0 & c\to 0 & d\to 0 & x\to 0 & \text{x1}\to 0 & \text{x2}\to 0 & \text{x3}\to 0 & \text{x4}\to 0 \\
\frac{5}{4} & a\to \frac{3}{2} & b\to \frac{1}{2} & c\to -1 & d\to -1 & x\to -\frac{1}{2} & \text{x1}\to 0 & \text{x2}\to 0 & \text{x3}\to 1 & \text{x4}\to \frac{3}{2} \\
-1 & a\to 2 & b\to -1 & c\to -1 & d\to 0 & x\to 1 & \text{x1}\to 0 & \text{x2}\to -2 & \text{x3}\to 0 & \text{x4}\to 0 \\
-1 & a\to 3 & b\to -1 & c\to -1 & d\to -1 & x\to 1 & \text{x1}\to 0 & \text{x2}\to -3 & \text{x3}\to 1 & \text{x4}\to 0 \\
\end{array}\]
|
|