Post Reply 
CAS: New simplification commands
04-16-2017, 05:11 PM (This post was last modified: 04-16-2017 05:22 PM by compsystems.)
Post: #1
CAS: New simplification commands
Expressions converting to the form x + y * i are easier to read, I suggest please that the CAS incorporate the following commands

PHP Code:
#cas
  
collectxyi(exprIn):=
  
begin
   
return normal(re(exprIn)) + normal(im(exprIn))*i;
  
end;
#end 

#cas
  
collectxyi2(exprIn):=
  
begin
   
return re(exprIn) + im(exprIn)*i;
  
end;
#end 

collectxyi( (1+i/(sqrt(2)+1))*sqrt(sqrt(2)+1)/(sqrt(2)) ); ->
(√(2)*√(√(2)+1)/2) + (√(2)*√(√(2)-1)/2) * i
Find all posts by this user
Quote this message in a reply
Post Reply 




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