π
<-

Simplifying radicals on TI-Nspire CAS - it is possible?

:32tins: :32tinsktpb: :32tinsktpn: :32tinscas: :32tinstpkc: :32tinstpktpb: :32tinstp: :32tinscastp: :32tinscmc: :32tinscx: :32tinscxcas:

Simplifying radicals on TI-Nspire CAS - it is possible?

Unread postby bluestone » 11 Apr 2023, 10:12

Нow to make the TI-Nspire CX CAS reduce variuos radical expressions (and whether it is capable of doing that, at all)?

like that

Image

or more simple

Image

I’m not talking about quite simple examples like Image, Image, but those where a bit more complex transformations are needed.

Тo make more sense of what it's about, here are examples done with other calculators:

ImageImage
User avatar
bluestone
Niveau 1: MD (Membre Débutant)
Niveau 1: MD (Membre Débutant)
Level up: 60%
 
Posts: 2
Joined: 10 Apr 2023, 20:50
Gender: Not specified
Calculator(s):
MyCalcs profile

Re: Simplifying radicals on TI-Nspire CAS - it is possible?

Unread postby Adriweb » 11 Apr 2023, 12:55

Simplifications are automatic. So, whenever it can, it will do it.

For instance, it works fine on your first example, but can't simplify the 2nd one :


MyCalcs: Help the community's calculator documentations by filling out your calculators info!
MyCalcs: Aidez la communauté à documenter les calculatrices en donnant des infos sur vos calculatrices !
Inspired-Lua.org: All about TI-Nspire Lua programming (tutorials, wiki/docs...)
My calculator programs
Mes programmes pour calculatrices
User avatar
AdriwebAdmin
Niveau 16: CC2 (Commandeur des Calculatrices)
Niveau 16: CC2 (Commandeur des Calculatrices)
Level up: 79.7%
 
Posts: 14818
Images: 1131
Joined: 01 Jun 2007, 00:00
Location: France
Gender: Male
Calculator(s):
MyCalcs profile
Twitter: adriweb
GitHub: adriweb

Re: Simplifying radicals on TI-Nspire CAS - it is possible?

Unread postby bluestone » 12 Apr 2023, 08:04

And then it turns out that the CP400 has more advanced CAS if it can do that?

Image
User avatar
bluestone
Niveau 1: MD (Membre Débutant)
Niveau 1: MD (Membre Débutant)
Level up: 60%
 
Posts: 2
Joined: 10 Apr 2023, 20:50
Gender: Not specified
Calculator(s):
MyCalcs profile

Re: Simplifying radicals on TI-Nspire CAS - it is possible?

Unread postby Adriweb » 12 Apr 2023, 08:11

Each CAS has their own advantages and drawbacks.

At least on the Nspire you can install third party CAS engines like KhiCAS (xcas, which is what the HP Prime has)

MyCalcs: Help the community's calculator documentations by filling out your calculators info!
MyCalcs: Aidez la communauté à documenter les calculatrices en donnant des infos sur vos calculatrices !
Inspired-Lua.org: All about TI-Nspire Lua programming (tutorials, wiki/docs...)
My calculator programs
Mes programmes pour calculatrices
User avatar
AdriwebAdmin
Niveau 16: CC2 (Commandeur des Calculatrices)
Niveau 16: CC2 (Commandeur des Calculatrices)
Level up: 79.7%
 
Posts: 14818
Images: 1131
Joined: 01 Jun 2007, 00:00
Location: France
Gender: Male
Calculator(s):
MyCalcs profile
Twitter: adriweb
GitHub: adriweb

Re: Simplifying radicals on TI-Nspire CAS - it is possible?

Unread postby Hisham » 15 Apr 2023, 11:52

In some cases it's possible to simplify nested (cubic) radicals. Let's suppose we have (m+n∙sqrt(p))^(1/3). The radicand should be of the type: (a+sqrt(b))^3 = a^3 + 3ab + (3a^2 + b)∙sqrt(b), that is m = (a^3 + 3ab) and n∙sqrt(p) = (3a^2 + b)∙sqrt(b). To be able to say that b=p (the radical part is not univocally determined), we'll need to look at the various "representations" of the radical and see if there is one where (n-p)/3 is a perfect square.
In such a case, we'll have a=sqrt((n-p)/3) and b=p, hence (m+n∙sqrt(p))^(1/3) = a+sqrt(b).

Example: (7+5∙sqrt(2)) = (a+sqrt(b))^3, where (a^3 + 3ab)=7 and a=sqrt((5-2)/3)=1 (b=p=2). Thus we get (7+5∙sqrt(2))^(1/3) = 1+sqrt(2).
This procedure could be "algorithmized" (i.e. through a system) for the TI-Nspire (with TI-Basic or Python) but it does not work in all cases (generally Landau's algorithm is used for the CAS calc).
User avatar
HishamPremium
Niveau 8: ER (Espèce Rare: nerd)
Niveau 8: ER (Espèce Rare: nerd)
Level up: 12.9%
 
Posts: 140
Joined: 01 Mar 2017, 20:52
Gender: Not specified
Calculator(s):
MyCalcs profile

Re: Simplifying radicals on TI-Nspire CAS - it is possible?

Unread postby Adriweb » 15 Apr 2023, 12:04

Wolfram Alpha can give you the steps for this, too, but anyway :P

Image

MyCalcs: Help the community's calculator documentations by filling out your calculators info!
MyCalcs: Aidez la communauté à documenter les calculatrices en donnant des infos sur vos calculatrices !
Inspired-Lua.org: All about TI-Nspire Lua programming (tutorials, wiki/docs...)
My calculator programs
Mes programmes pour calculatrices
User avatar
AdriwebAdmin
Niveau 16: CC2 (Commandeur des Calculatrices)
Niveau 16: CC2 (Commandeur des Calculatrices)
Level up: 79.7%
 
Posts: 14818
Images: 1131
Joined: 01 Jun 2007, 00:00
Location: France
Gender: Male
Calculator(s):
MyCalcs profile
Twitter: adriweb
GitHub: adriweb

Online

Re: Simplifying radicals on TI-Nspire CAS - it is possible?

Unread postby parisse » 15 Apr 2023, 19:52

This is not the right way to simplify roots. The right way here is to factor x^3-(5*sqrt(2)+7) over Q[sqrt(2)], and to do that multiply by the conjugate, this gives x^6-14*x^3-1, factor it over the integers, you get 2 factors (x^2-2*x-1)*(x^4+2*x^3+5*x^2-2*x+1), then select the right one. If the polynomial is irreducible over the integers, then it can not be simplified (in that case the algebraic extension is of order 6).
Note that the general tool for something more complicated than sqrt is the resultant.
r:=resultant(x^3-(5y+7),y^2-2,y);
factor(r);
(you can run these commands with KhiCAS on compatible calculators, and on the Prime)
User avatar
parisseVIP++
Niveau 12: CP (Calculatrice sur Pattes)
Niveau 12: CP (Calculatrice sur Pattes)
Level up: 89.3%
 
Posts: 3718
Joined: 13 Dec 2013, 16:35
Gender: Not specified
Calculator(s):
MyCalcs profile


Return to Problèmes divers / Aide débutants

Who is online

Users browsing this forum: ClaudeBot [spider] and 16 guests

-
Search
-
Social TI-Planet
-
Featured topics
Comparaisons des meilleurs prix pour acheter sa calculatrice !
"1 calculatrice pour tous", le programme solidaire de Texas Instruments. Reçois gratuitement et sans aucune obligation d'achat, 5 calculatrices couleur programmables en Python à donner aux élèves les plus nécessiteux de ton lycée. Tu peux recevoir au choix 5 TI-82 Advanced Edition Python ou bien 5 TI-83 Premium CE Edition Python.
Enseignant(e), reçois gratuitement 1 exemplaire de test de la TI-82 Advanced Edition Python. À demander d'ici le 31 décembre 2024.
Aidez la communauté à documenter les révisions matérielles en listant vos calculatrices graphiques !
1234
-
Donations / Premium
For more contests, prizes, reviews, helping us pay the server and domains...
Donate
Discover the the advantages of a donor account !
JoinRejoignez the donors and/or premium!les donateurs et/ou premium !


Partner and ad
Notre partenaire Jarrety Calculatrices à acheter chez Calcuso
-
Stats.
896 utilisateurs:
>858 invités
>30 membres
>8 robots
Record simultané (sur 6 mois):
6892 utilisateurs (le 07/06/2017)
-
Other interesting websites
Texas Instruments Education
Global | France
 (English / Français)
Banque de programmes TI
ticalc.org
 (English)
La communauté TI-82
tout82.free.fr
 (Français)