由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
CS版 - HOW TO SOLVE THIS EQUATION?
相关主题
Excel 能否写个 equation with an independent variable (转载)Absolute equantions in Linear Programming??
how to define variables on commnad line in C++Re: [转载] 求救! latex set of equations 带行号和 大花括弧???
[转载] 求教高手:如何用程序实现递归函数的一般表达式?如下的图轮问题在MANET上面有什么应用
C++ 初级再初级问题 (转载)[转载] Type 3 Font Error when WORD --> PDF
请教一个基础C++问题 (转载)lp_solve 求救! divide by zero error :-(
请教怎么用#define实现如下的功能[转载] math program for word?
Vigenere Cipher question"Teaching school -->Research school"
How is it going? Re: destro爱CSA question on NP-hard, maybe sound stupid
相关话题的讨论汇总
话题: equation话题: solve话题: exp话题: const话题: variable
进入CS版参与讨论
1 (共1页)
m******g
发帖数: 2
1
THE EQUATION IS
A*\EXP(B*T)+C*\EXP(D*T)=E
WHERE A, B, C, D AND E ARE CONST. T IS A VARIABLE.
f*******h
发帖数: 1269
2
Let x = exp(BT).
Then you will get an equation:
x = C1 - C2*X**(d/b)
(constant omitted)
Then just select an intial value and iterate until it converges.

【在 m******g 的大作中提到】
: THE EQUATION IS
: A*\EXP(B*T)+C*\EXP(D*T)=E
: WHERE A, B, C, D AND E ARE CONST. T IS A VARIABLE.

m******g
发帖数: 2
3
No closed solution?

【在 f*******h 的大作中提到】
: Let x = exp(BT).
: Then you will get an equation:
: x = C1 - C2*X**(d/b)
: (constant omitted)
: Then just select an intial value and iterate until it converges.

g********g
发帖数: 11
4
In general, no.
It is known that there's no closed form solution for equations with order
greater or equal than 5 (or 6?), so when d/b >5, no closed form.

【在 m******g 的大作中提到】
: No closed solution?
1 (共1页)
进入CS版参与讨论
相关主题
A question on NP-hard, maybe sound stupid请教一个基础C++问题 (转载)
问一个Markov Chain / Queue的问题请教怎么用#define实现如下的功能
[合集] EE challenge CSVigenere Cipher question
如何求解方程2*x^3+10*x^2=3?? (转载)How is it going? Re: destro爱CS
Excel 能否写个 equation with an independent variable (转载)Absolute equantions in Linear Programming??
how to define variables on commnad line in C++Re: [转载] 求救! latex set of equations 带行号和 大花括弧???
[转载] 求教高手:如何用程序实现递归函数的一般表达式?如下的图轮问题在MANET上面有什么应用
C++ 初级再初级问题 (转载)[转载] Type 3 Font Error when WORD --> PDF
相关话题的讨论汇总
话题: equation话题: solve话题: exp话题: const话题: variable