TI-BASIC Wiki
Advertisement
:value*value

Multiplies one value from the second value.

:list*value

Multiplies value from every element of the list.

:list*list

if both lists are the same size, this multiplies each element of one list from the matching element of the other list and returns the result.

:matrix*matrix

Performs Matrix Multiplication.

Location[]

  • ×

Example[]

:Prompt A,B
:Disp "A*B=",A*B

This prompts for two numbers, then returns the product.

Advertisement