TI89 calculator solver in functions?

AI Thread Summary
The TI89 Titanium's built-in solver can be utilized for compressible flow problems, specifically for calculating the Mach number based on area ratios. The "solve(" function returns text, which is not useful for further manipulation of values. Instead, the "nSolve(" function is recommended, as it can find numerical solutions. However, it only returns the first value that satisfies the equation. To refine the results, users can restrict the solution domain by using conditions in the "nSolve" function, allowing for targeted calculations for subsonic or supersonic flow. For subsonic flow, the syntax would be "nSolve(A/A* function, variable) | variable < 1," while for supersonic flow, it would be "... | variable > 1." This approach enables effective use of the calculator for specific flow conditions.
jzmaster
Messages
5
Reaction score
1
I was wondering if it's possible to use the TI89 Titanium's built-in solver with programs. More specifically, for compressible flow problems, I'd like to calculate mach number based on area ratio, specify whether the flow is subsonic or supersonic, then do something with the corresponding value.

Sadly, the "solve(" function returns text which is useless for manipulating the value (for example, taking the minimum)

Thanks in advance for any help.
 
Computer science news on Phys.org
I solved this problem myself. Here's what I did:
the "solve(" function returns text no matter what you do. The only useful function is "nSolve(". Unfortunately, nSolve will give whatever value it finds first which satisfies the equation, and doesn't search for other values. It is still useable in this case though:
by using "nSolve(function,variable) | variable < value", I can restrict nSolve's solution to a specific domain. By doing so, I can get the value in the region I'm interested in (in this case, subsonic flow, I'd type "nSolve(A/A* function,variable) | variable < 1" for subsonic, or "... | variable > 1" for supersonic.
 
  • Like
Likes Greg Bernhardt
In my discussions elsewhere, I've noticed a lot of disagreement regarding AI. A question that comes up is, "Is AI hype?" Unfortunately, when this question is asked, the one asking, as far as I can tell, may mean one of three things which can lead to lots of confusion. I'll list them out now for clarity. 1. Can AI do everything a human can do and how close are we to that? 2. Are corporations and governments using the promise of AI to gain more power for themselves? 3. Are AI and transhumans...
Sorry if 'Profile Badge' is not the correct term. I have an MS 365 subscription and I've noticed on my Word documents the small circle with my initials in it is sometimes different in colour document to document (it's the circle at the top right of the doc, that, when you hover over it it tells you you're signed in; if you click on it you get a bit more info). Last night I had four docs with a red circle, one with blue. When I closed the blue and opened it again it was red. Today I have 3...
Back
Top