Questions tagged [ti-basic]

TI-BASIC is the official name of a BASIC-like language built into Texas Instruments (TI)'s graphing calculators, including the TI-83 series, TI-84 Plus series, TI-89 series, TI-92 series, TI-73, and TI-Nspire. The capability to write programs in TI-BASIC is automatically built-in to Texas Instruments calculators.

Forms of TI-Basic

TI-Basic comes in three distinct forms, TI-83, 68K, and TI-NSpire. While these forms have much in common, they also have noticeable differences that make code written for one from almost completely incompatible with the others. For this reason it is important to explicitly state the form of TI-Basic you are using in any questions.

  • TI-83 Basic
    This is the most common form of TI-Basic. It refers the form of TI-Basic found on both TI-83 and TI-84 series of calculators. Even within this form of TI-Basic, there are variations in the availability of functions between calculators.
  • 68K
    This form of TI-Basic is far less common than TI-83 Basic. 68K TI-Basic is found on the TI-89, TI-92 and Voyage 200 calculators.
  • TI-Nspire
    Generally the least common form, this is only found on TI-Nspire series calculators. Due to the far superior processing power TI-Nspire calculators have, this form could have more potential than the others, but limitation in regards to input and output renders this form largely unused.

Resources

231 questions
0
votes
1 answer

Ti-Nspire cx calculator program will not execute

I'm having some difficulty making my new calculator run code. Problems: I follow tutorials but when I run my code it only responds with Done No output shows up A photo to sum it up: What can I do to make it work?
0
votes
4 answers

How to count digits of a number?

I'm making a program on my TI-84, and I'm in need of a way to count the digits of a number. How would I go about doing that?
user3932000
  • 671
  • 8
  • 24
0
votes
3 answers

Why won't finding polynomial whole number routes work?

So I want this to find me the roots of a polynomial. However, everytime I run it, it never gives me any roots, even if I use an obvious one like 2x-2. Why won't it work? Input "Degree?",θ Disp "Left to right" Disp "coefficients" 1→V For(Z,0,θ) Input…
Miles Kim
  • 1
  • 1
0
votes
1 answer

getKey from Ti-Basic in Python?

I was wondering how the getKey command works and how to use it in Python, as there is no command like that (right?). Somehow, StackOverflow does not like short questions. I was writing a program on my calculator and then I thought, why not put it to…
PhP
  • 82
  • 7
0
votes
1 answer

iPart( and int( returning 0 for 1?

Ok, here's my problem. I wrote an advanced Pythagorean Theorem program, but it apparently is having exceptions. Here's an instance of my problem. When I input A? √(3) and B? 2, I get 0 back. Here's the code: :Prompt A,C :(C^2-A^2)->B :If…
jaysoncopes
  • 805
  • 3
  • 13
  • 26
0
votes
1 answer

TI-84 CSE GDP calculation

I am trying to create a program that will allow me to select a STATLIST (L1,L2,...) as variables and take L1 value one (L1,1) times L2 value 1(L2,1). Then sum that product with all values in the function. So in a regular function form something…
NarphXCIX
  • 3
  • 2
0
votes
1 answer

TI Basic: How to end Lbl blocks

I'm making a simple text-based battle between the player and a dragon. I use Menus to have the player select from a set of options. The Menu then obviously goes to the Lbl assigned to the selected option. Within the while loop for the game I can end…
StrongJoshua
  • 975
  • 10
  • 24
0
votes
2 answers

TI Calculator Programming, Won't Display Graph?

So I'm making an achievement system in a game, and I'm having a little trouble. You click on achievements, then trophy case, and then inspect for a description of each achievement. I got this working earlier, but I don't know what I changed. Can you…
Tim
  • 315
  • 4
  • 23
0
votes
1 answer

if then statement equivalent in php

I am newish to php. But when i learned to program it was on a TI-83 Calculator. with the TI83 their was an if-then statements the could be used. I am writing some code to check if a directory is already created and if not create it. I need it to run…
DcHerrera
  • 80
  • 1
  • 11
0
votes
3 answers

TI Basic how to do store value in notepad++

I'm trying to write a program in notepad++ the language is TI Basic. On a TI 83 or 84 calculator when programming you can store a value to a letter by using the STO> button. In the code STO> is represented by ex: 2+2=4-->x. How would I write that in…
0
votes
1 answer

How do I create a new syntax hilighting set for Ti-Npsire/ Ti-BASIC in Sublime text 2

I'm using the awesome Sublime Text 2 to write in TI-NSPIRE/ Ti-BASIC programs for Nspire Calculator, but it has no syntax highlighting for TI-NSPIRE/ Ti-BASIC. It would be handy to add TI-NSPIRE/ Ti-BASIC's commands. Does anybody know how I would…
0
votes
1 answer

Why is my TI-84 program terminating?

Not sure why but my program keeps terminating. I removed all Stop functions. Here's the code: :Lbl A :ClrHome :Prompt A :ClrHome :Prompt B :ClrHome :Prompt C :Disp "B^2-4AC=" (Program stops here for some reason) …
theK_S
  • 45
  • 2
  • 12
0
votes
1 answer

TI-BASIC tab character / output formatting

I've written a program on my TI-nspire CAS calculator that outputs something similar to the following... intercepts x = 2 and x = 4 y = 0 derivative 2x - 4 turning points (2, -4) This is obviously a fair bit of information to output over…
Anti Earth
  • 4,671
  • 13
  • 52
  • 83
0
votes
2 answers

TI-84 Multiple Menu Program

So when you make a menu using the Menu() function, It goes: Title Option 1 Option 2 Option 3 Etc... But almost every menu already on the calculator has multiple titles that you can choose from, then each with their own options. How would you program…
JShoe
  • 3,186
  • 9
  • 38
  • 61
-1
votes
2 answers

In it basic, how do I add one to a variable?

I am creating a Pac-Man game on a ti-83, and need to add one to a output variable to move a character. Does anyone know how to do this?
Lann4daze
  • 17
  • 4
1 2 3
15
16