xxx
DownloadTélécharger
Actions
Vote :
ScreenshotAperçu

Informations
Catégorie :Category: nCreator TI-Nspire
Auteur Author: gabrielin234
Type : Classeur 3.0.1
Page(s) : 1
Taille Size: 3.21 Ko KB
Mis en ligne Uploaded: 06/04/2025 - 21:03:59
Uploadeur Uploader: gabrielin234 (Profil)
Téléchargements Downloads: 3
Visibilité Visibility: Archive publique
Shortlink : http://ti-pla.net/a4565149
Type : Classeur 3.0.1
Page(s) : 1
Taille Size: 3.21 Ko KB
Mis en ligne Uploaded: 06/04/2025 - 21:03:59
Uploadeur Uploader: gabrielin234 (Profil)
Téléchargements Downloads: 3
Visibilité Visibility: Archive publique
Shortlink : http://ti-pla.net/a4565149
Description
Fichier Nspire généré sur TI-Planet.org.
Compatible OS 3.0 et ultérieurs.
<<
Define uilmath()= Prgm :Local choice,subchoice :Loop :ClrIO :Disp "Texas UIL Math Tools" :Disp "1. Permutations" :Disp "2. Combinations" :Disp "3. Basic Probability" :Disp "4. Advanced Probability" :Disp "5. Help/Examples" :Disp "6. Quit" :Input "Choose (1-6): ",choice :If choice=1 Then :permmenu() :ElseIf choice=2 Then :combmenu() :ElseIf choice=3 Then :basicprob() :ElseIf choice=4 Then :advprob() :ElseIf choice=5 Then :helpmenu() :ElseIf choice=6 Then :Exit :EndIf :EndLoop :EndPrgm Define permmenu()= Prgm :Local n,r,p,d,g :Loop :ClrIO :Disp "Permutation Types" :Disp "1. Regular (nPr)" :Disp "2. With Duplicates" :Disp "3. Circular" :Disp "4. Back" :Input "Choose (1-4): ",subchoice :If subchoice=1 Then :Input "Total items (n): ",n :Input "Select (r): ",r :If n<r or n<0 or r<0 Then :Disp "Invalid input" :Else :nPr(n,r)p :Disp "Permutations:",p :EndIf :Pause :ElseIf subchoice=2 Then :Input "Total items: ",n :Input "Group size: ",g :n^gp :Disp "Arrangements:",p :Pause :ElseIf subchoice=3 Then :Input "Items in circle: ",n :(n-1)!p :Disp "Circular arrangements:",p :Pause :ElseIf subchoice=4 Then :Exit :EndIf :EndLoop :EndPrgm Define combmenu()= Prgm :Local n,r,c,a,b,k :Loop :ClrIO :Disp "Combination Types" :Disp "1. Regular (nCr)" :Disp "2. Multiple Groups" :Disp "3. Back" :Input "Choose (1-3): ",subchoice :If subchoice=1 Then :Input "Total (n): ",n :Input "Choose (r): ",r :If n<r or n<0 or r<0 Then :Disp "Invalid input" :Else :nCr(n,r)c :Disp "Combinations:",c :EndIf :Pause :ElseIf subchoice=2 Then :Input "Total items: ",n :Input "Group 1 size: ",a :Input "Group 2 size: ",b :nCr(n,a)*nCr(n-a,b)c :Disp "Multi-group combos:",c :Pause :ElseIf subchoice=3 Then :Exit :EndIf :EndLoop :EndPrgm Define basicprob()= Prgm :Local f,p,s,prob :Loop :ClrIO :Disp "Basic Probability" :Disp "1. Single Event" :Disp "2. Complement" :Disp "3. Back" :Input "Choose (1-3): ",subchoice :If subchoice=1 Then :Input "Favorable: ",f :Input "Possible: ",p :If f>p or pd0 Then :Disp "Invalid input" :Else :f/ps :Disp "Probability:",s :EndIf :Pause :ElseIf subchoice=2 Then :Input "Event prob: ",prob :1-probs :Disp "Complement:",s :Pause :ElseIf subchoice=3 Then :Exit :EndIf :EndLoop :EndPrgm Define advprob()= Prgm :Local a,b,k,n,pa,pb,result :Loop :ClrIO :Disp "Advanced Probability" :Disp "1. Independent Events" :Disp "2. Dependent Events" :Disp "3. Mutually Exclusive" :Disp "4. Binomial" :Disp "5. Back" :Input "Choose (1-5): ",subchoice :If subchoice=1 Then :Input "P(A): ",pa :Input "P(B): ",pb :pa*pbresult :Disp "P(A and B):",result :Pause :ElseIf subchoice=2 Then :Input "P(A): ",pa :Input "P(B|A): ",pb :pa*pbresult :Disp "P(A then B):",result :Pause :ElseIf subchoice=3 Then :Input "P(A): ",pa :Input "P(B): ",pb :pa+pbresult :Disp "P(A or B):",result :Pause :ElseIf subchoice=4 Then :Input "Trials (n): ",n :Input "Successes (k): ",k :Input "P(success): ",pa :nCr(n,k)*pa^k*(1-pa)^(n-k)result :Disp "Binomial prob:",result :Pause :ElseIf subchoice=5 Then :Exit :EndIf :EndLoop :EndPrgm Define helpmenu()= Prgm :ClrIO :Disp "UIL Math Help" :Disp "Permutations:" :Disp "- Regular: nPr" :Disp "- Duplicates: n^r" :Disp "- Circular: (n-1)!" :Disp "" :Disp "Combinations:" :Disp "- Regular: nCr" :Disp "- Multi-group: n!/(a!b!c!)" :Disp "" :Disp "Press any key..." :Pause :EndPrgm Made with nCreator - tiplanet.org
>>
Compatible OS 3.0 et ultérieurs.
<<
Define uilmath()= Prgm :Local choice,subchoice :Loop :ClrIO :Disp "Texas UIL Math Tools" :Disp "1. Permutations" :Disp "2. Combinations" :Disp "3. Basic Probability" :Disp "4. Advanced Probability" :Disp "5. Help/Examples" :Disp "6. Quit" :Input "Choose (1-6): ",choice :If choice=1 Then :permmenu() :ElseIf choice=2 Then :combmenu() :ElseIf choice=3 Then :basicprob() :ElseIf choice=4 Then :advprob() :ElseIf choice=5 Then :helpmenu() :ElseIf choice=6 Then :Exit :EndIf :EndLoop :EndPrgm Define permmenu()= Prgm :Local n,r,p,d,g :Loop :ClrIO :Disp "Permutation Types" :Disp "1. Regular (nPr)" :Disp "2. With Duplicates" :Disp "3. Circular" :Disp "4. Back" :Input "Choose (1-4): ",subchoice :If subchoice=1 Then :Input "Total items (n): ",n :Input "Select (r): ",r :If n<r or n<0 or r<0 Then :Disp "Invalid input" :Else :nPr(n,r)p :Disp "Permutations:",p :EndIf :Pause :ElseIf subchoice=2 Then :Input "Total items: ",n :Input "Group size: ",g :n^gp :Disp "Arrangements:",p :Pause :ElseIf subchoice=3 Then :Input "Items in circle: ",n :(n-1)!p :Disp "Circular arrangements:",p :Pause :ElseIf subchoice=4 Then :Exit :EndIf :EndLoop :EndPrgm Define combmenu()= Prgm :Local n,r,c,a,b,k :Loop :ClrIO :Disp "Combination Types" :Disp "1. Regular (nCr)" :Disp "2. Multiple Groups" :Disp "3. Back" :Input "Choose (1-3): ",subchoice :If subchoice=1 Then :Input "Total (n): ",n :Input "Choose (r): ",r :If n<r or n<0 or r<0 Then :Disp "Invalid input" :Else :nCr(n,r)c :Disp "Combinations:",c :EndIf :Pause :ElseIf subchoice=2 Then :Input "Total items: ",n :Input "Group 1 size: ",a :Input "Group 2 size: ",b :nCr(n,a)*nCr(n-a,b)c :Disp "Multi-group combos:",c :Pause :ElseIf subchoice=3 Then :Exit :EndIf :EndLoop :EndPrgm Define basicprob()= Prgm :Local f,p,s,prob :Loop :ClrIO :Disp "Basic Probability" :Disp "1. Single Event" :Disp "2. Complement" :Disp "3. Back" :Input "Choose (1-3): ",subchoice :If subchoice=1 Then :Input "Favorable: ",f :Input "Possible: ",p :If f>p or pd0 Then :Disp "Invalid input" :Else :f/ps :Disp "Probability:",s :EndIf :Pause :ElseIf subchoice=2 Then :Input "Event prob: ",prob :1-probs :Disp "Complement:",s :Pause :ElseIf subchoice=3 Then :Exit :EndIf :EndLoop :EndPrgm Define advprob()= Prgm :Local a,b,k,n,pa,pb,result :Loop :ClrIO :Disp "Advanced Probability" :Disp "1. Independent Events" :Disp "2. Dependent Events" :Disp "3. Mutually Exclusive" :Disp "4. Binomial" :Disp "5. Back" :Input "Choose (1-5): ",subchoice :If subchoice=1 Then :Input "P(A): ",pa :Input "P(B): ",pb :pa*pbresult :Disp "P(A and B):",result :Pause :ElseIf subchoice=2 Then :Input "P(A): ",pa :Input "P(B|A): ",pb :pa*pbresult :Disp "P(A then B):",result :Pause :ElseIf subchoice=3 Then :Input "P(A): ",pa :Input "P(B): ",pb :pa+pbresult :Disp "P(A or B):",result :Pause :ElseIf subchoice=4 Then :Input "Trials (n): ",n :Input "Successes (k): ",k :Input "P(success): ",pa :nCr(n,k)*pa^k*(1-pa)^(n-k)result :Disp "Binomial prob:",result :Pause :ElseIf subchoice=5 Then :Exit :EndIf :EndLoop :EndPrgm Define helpmenu()= Prgm :ClrIO :Disp "UIL Math Help" :Disp "Permutations:" :Disp "- Regular: nPr" :Disp "- Duplicates: n^r" :Disp "- Circular: (n-1)!" :Disp "" :Disp "Combinations:" :Disp "- Regular: nCr" :Disp "- Multi-group: n!/(a!b!c!)" :Disp "" :Disp "Press any key..." :Pause :EndPrgm Made with nCreator - tiplanet.org
>>