Post Reply 
Another xCAS commands --> Prime. discussion
12-19-2019, 02:39 PM (This post was last modified: 05-09-2021 10:58 PM by compsystems.)
Post: #1
Another xCAS commands --> Prime. discussion
Hi HP-Prime Team, sorry for the electronic translation

There is a command that is not included in the latest firmware version.
with_sqrt (True / False)
it's a flag type cmd for factored in terms of irreducible factors with respect to the rational numbers. (In other words, none of the polynomials in the factored form can be factored further without introducing radicals.)


The idea is to work with the command line in the history view without going to the configuration view, for this reason, HP-Prime Team must include with_sqrt(True / False) in the next firmware improvements

sentences to enter the history view to observe the operation of with_sqrt ()
Xcas Code
PHP Code:
test_withsqrt_flag(x):={
  
local poly1;
  
purge(x);
  
with_sqrtFalse ); 
  
poly1 := x^-4*x^-7*x^-41*x^-4*x+35;
  print( 
factorpoly1 ) ); // (x+1) * (x^2-7*x+5) * (x^2+2*x+7)
  
with_sqrtTrue );  
  print( 
factorpoly1 )); // (x+(-√29-7)/2) * (x+(√29-7)/2)*(x+1) * (x^2+2*x+7) 
  
return poly1;
}; 
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
Another xCAS commands --> Prime. discussion - compsystems - 12-19-2019 02:39 PM



User(s) browsing this thread: 1 Guest(s)