Constant in function of other constants - TI-Nspire CAS

一笑奈何 提交于 2019-12-13 03:02:17

问题


I have these three expressions:

E1=(c1-c2)/(c1-c5)

E2=(c3-c4)/(c3-c7)

Es=(c1-c4)/(c1-c5)

How can I express Es in function of E1 and E2?

Es=E1+E2*(c3-c7)/(c1-c5)

Thank you for your time.


回答1:


This is same type of problem you had in previous question and you were right - TI basic is not made for such things. There is no automatic way to do what you want but in each individual case you can do the same kind of gymnastics as previously. In this case, you have system of 2 equations with many variables, so you can eliminate 2 of them. You picked (for some reason) c2 and c4 to eliminate, so system must be solved for those 2 variables and solution included in third equation:

i1:=solve({E1=(c1-c2)/(c1-c5),E2=(c3-c4)/(c3-c7)},{c2,c4})
Es:=(c1-c4)/(c1-c5)|i1

result>

Es:=(c1+c3*(e2-1)-c7*e2)/(c1-c5)

Also, in this case E1 and E2 expressions are independent, so they can be solved separately, and Es expr. doesnt contain c2, you can just>

i1:=solve(E2=(c3-c4)/(c3-c7),c4)
Es:=(c1-c4)/(c1-c5)|i1

..with the same result. This is not what you wanted, but your solution is not correct anyway.



来源:https://stackoverflow.com/questions/49600201/constant-in-function-of-other-constants-ti-nspire-cas

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!