Post Reply 
Exponents Issue
02-05-2020, 12:26 AM
Post: #2
RE: Exponents Issue
(02-04-2020 11:23 AM)dimchansky Wrote:  Expecting the expression
Code:
x^(1/9)*(x*x^(1/3))^(1/6)
to be simplified to
Code:
x^(1/3)
, but the calculator does not simplify it (tried collect, simplify functions with no effect). TI-89 Titanium and TI-Nspire both calculators simplify it.
Any ideas?

A funny try in the middle of the night:

Code:
#cas
expcollect(f):=
BEGIN
  LOCAL g,s,v;
  v:=mat2list(algvar(f));
  s:=SIZE(v);
  v:=head(mat2list(v(s)));
  g:="'solve(y_="+f+","+v+")'";
  g:=expr(g);
  f:="'solve("+v+"="+g+",y_)'";
  RETURN expr(f);
END;
#end

VPN
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
Exponents Issue - dimchansky - 02-04-2020, 11:23 AM
RE: Exponents Issue - CyberAngel - 02-05-2020 12:26 AM
RE: Exponents Issue - Claudio L. - 02-05-2020, 10:42 PM
RE: Exponents Issue - CyberAngel - 02-05-2020, 11:05 PM
RE: Exponents Issue - Albert Chan - 02-06-2020, 12:21 AM
RE: Exponents Issue - CyberAngel - 02-06-2020, 04:06 AM
RE: Exponents Issue - dimchansky - 02-07-2020, 09:38 AM
RE: Exponents Issue - swagner53 - 02-06-2020, 09:19 PM
RE: Exponents Issue - dimchansky - 02-07-2020, 09:03 AM
RE: Exponents Issue - DrD - 02-07-2020, 12:47 PM
RE: Exponents Issue - roadrunner - 02-07-2020, 02:21 PM
RE: Exponents Issue - dimchansky - 02-07-2020, 02:26 PM
RE: Exponents Issue - roadrunner - 02-07-2020, 04:26 PM
RE: Exponents Issue - dimchansky - 02-07-2020, 04:29 PM
RE: Exponents Issue - roadrunner - 02-07-2020, 04:41 PM
RE: Exponents Issue - dimchansky - 02-07-2020, 10:15 PM
RE: Exponents Issue - roadrunner - 02-07-2020, 04:52 PM
RE: Exponents Issue - thenozone - 02-07-2020, 08:41 PM
RE: Exponents Issue - Claudio L. - 02-07-2020, 10:58 PM
RE: Exponents Issue - swagner53 - 02-07-2020, 08:54 PM



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