由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Computation版 - [转载] 大家看这个方程组用什么软件解
相关主题
matlab 能不能解符号矩阵方程? (转载)Mathematica 求迹运算的问题
请教:如何用least square approach解超定方程组有人用过FORM做符号计算吗?
求教: 关于mathematica的历史Mathematica 求助
Mathematica数值求解Differential Equations的问题[转载] 请maple 或者 mathematica 的高手帮个忙!
Mathematica Problem: NDSolve:急问!!这句话是什么意思???
[转载] help!怎么数值求解高次方程组的根?mathematica可以解所有的方程吗?
问个小问题,矩阵分解用Matlab解方程组?
解常微分方程组的问题请教:Matlab中要处理的矩阵太大怎么办?
相关话题的讨论汇总
话题: l2话题: l1话题: log话题: x2话题: x1
进入Computation版参与讨论
1 (共1页)
s*i
发帖数: 18
1
【 以下文字转载自 Mathematics 讨论区 】
【 原文由 sdi 所发表 】
c1+v2*p1*a^(L1/x1)*(1-L1*log(a)/x1)=0
c2+v2*p2*a^(L2/x2)*(1-L2*log(a)/x2)=0
v1+v2*p1*a^(L1/x1)*log(a)=0
v1+v2*p2*a^(L2/x2)*log(a)=0
L1+L2-L=0
p1*x1*a^(L1/x1)+p2*x2*a^(L2/x2)-E=0
其中x1,x2,L1,L2是变量,其余皆为常数
我生解是解不出来的,用Matlab的符号运算总是显示
Explicit solution could not be found
这里不求大家能给出结果,但求大家推荐能进行复杂
符号运算的数学软件。Mathematica & Maple能解吗?
如果能,我就去装一个。
s*****l
发帖数: 167
2
try fsolve in Matlab

【在 s*i 的大作中提到】
: 【 以下文字转载自 Mathematics 讨论区 】
: 【 原文由 sdi 所发表 】
: c1+v2*p1*a^(L1/x1)*(1-L1*log(a)/x1)=0
: c2+v2*p2*a^(L2/x2)*(1-L2*log(a)/x2)=0
: v1+v2*p1*a^(L1/x1)*log(a)=0
: v1+v2*p2*a^(L2/x2)*log(a)=0
: L1+L2-L=0
: p1*x1*a^(L1/x1)+p2*x2*a^(L2/x2)-E=0
: 其中x1,x2,L1,L2是变量,其余皆为常数
: 我生解是解不出来的,用Matlab的符号运算总是显示

t****n
发帖数: 39
3
For this kind of non-linear equations, Newton-Rapson method is a good
solution. You can try the method on Numerical Recipe.
It seems you have 5 equations for 4 variables. ???

【在 s*i 的大作中提到】
: 【 以下文字转载自 Mathematics 讨论区 】
: 【 原文由 sdi 所发表 】
: c1+v2*p1*a^(L1/x1)*(1-L1*log(a)/x1)=0
: c2+v2*p2*a^(L2/x2)*(1-L2*log(a)/x2)=0
: v1+v2*p1*a^(L1/x1)*log(a)=0
: v1+v2*p2*a^(L2/x2)*log(a)=0
: L1+L2-L=0
: p1*x1*a^(L1/x1)+p2*x2*a^(L2/x2)-E=0
: 其中x1,x2,L1,L2是变量,其余皆为常数
: 我生解是解不出来的,用Matlab的符号运算总是显示

h*********y
发帖数: 1
4
My solution:
let h1 = a ^ (L1/x1), h2 = a ^ (L2/x2), then according to (3) and (4),
h1 = -v1 / [v2*p1*log(a)], (7)
h2 = -v1 / [v2*p2*log(a)], (8)
and
h1/h2 = p2/p1.
We denote h1 and h2 as formulas (7) and (8), then we get
L1/x1 = log(h1) / log(a), (9)
L2/x2 = log(h2) / log(a) (10)
and through (5) we get
L1 + L2 = L, (11)
and through (6) we get
p1*h1 * x1 + p2*h2 * x2 = E (12)
Now we change the form of the 4 formulas:
L

【在 s*i 的大作中提到】
: 【 以下文字转载自 Mathematics 讨论区 】
: 【 原文由 sdi 所发表 】
: c1+v2*p1*a^(L1/x1)*(1-L1*log(a)/x1)=0
: c2+v2*p2*a^(L2/x2)*(1-L2*log(a)/x2)=0
: v1+v2*p1*a^(L1/x1)*log(a)=0
: v1+v2*p2*a^(L2/x2)*log(a)=0
: L1+L2-L=0
: p1*x1*a^(L1/x1)+p2*x2*a^(L2/x2)-E=0
: 其中x1,x2,L1,L2是变量,其余皆为常数
: 我生解是解不出来的,用Matlab的符号运算总是显示

1 (共1页)
进入Computation版参与讨论
相关主题
请教:Matlab中要处理的矩阵太大怎么办?Mathematica Problem: NDSolve:
帮忙解决一个数学问题(解方程)[转载] help!怎么数值求解高次方程组的根?
问一个提高matlab计算速度的问题!问个小问题,矩阵分解
如何避免常微分方程组出现stiff情况呢?解常微分方程组的问题
matlab 能不能解符号矩阵方程? (转载)Mathematica 求迹运算的问题
请教:如何用least square approach解超定方程组有人用过FORM做符号计算吗?
求教: 关于mathematica的历史Mathematica 求助
Mathematica数值求解Differential Equations的问题[转载] 请maple 或者 mathematica 的高手帮个忙!
相关话题的讨论汇总
话题: l2话题: l1话题: log话题: x2话题: x1