How to type answers in STACK
Answer input
In STACK you often need to enter an answer which is an algebraic expression. You should type in your answers using the same syntax as that used in the symbolic mathematics package Maxima.
The syntax is broadly similar to the syntax used for mathematical formulae in graphical calculators, general programming languages such as Java, C and Basic and in spreadsheet programs, so you will find it useful to master it.
For example, to enter you need to type in
e^(-t)*sin(3*t)
STACK tries quite hard to give helpful information about any syntax errors. It might also forgive some errors you make.
Basic Notation
Numbers
You should type in numbers without spaces, and use fractions rather than decimals where possible. For example, should be entered as 1/4
, not as 0.25
. Also,
- is entered as either
pi
or%pi
, - , the base of the natural logarithms, is entered as either
e
or%e
, - is entered as either
i
or%i
. - You can also use scientific notation for large numbers, e.g. can be entered as
1E+3
. Note, however, that in many situations floating point numbers are forbidden.
Multiplication
Use a star for multiplication. Forgetting this is by far the most common source of syntax errors. For example,
STACK does sometimes try to insert stars for you where there is no ambiguity, 2x
or (x+1)(x-1)
. This guessing cannot be perfect since traditional mathematical notation is sometimes ambiguous! Compare and .
Powers
Use a caret (^) for raising something to a power: for example, should be entered as x^2
. You can get a caret by holding down the SHIFT key and pressing the 6 key on most keyboards. Negative or fractional powers need brackets:
Brackets
Brackets are important to group terms in an expression. This is particularly the case in STACK since we use a one dimensional input rather than traditional written mathematics. Try to consciously develop a sense of when you need brackets and avoid putting in too many.
For example,
should be entered as (a+b)/(c+d)
.
If you type a+b/(c+d)
, then STACK will think that you mean
If you type (a+b)/c+d
, then STACK will think that you mean
If you type a+b/c+d
, then STACK will think that you mean
Think carefully about the expression a/b/c
. What do you think this means? There are two options
Maxima interprets this as . If in doubt use brackets.
Note that in this context you should always use ordinary round bracket (like (a+b)), not square or curly ones (like [a+b] or {a+b}).
{a+b}
;means a set,[a+b]
means a list.
More examples
- should be entered as
2^(a+b)
- should be entered as
2*cos(3*x)
- should be entered as
exp(a*x)*sin(b*x)
- should be entered as
(a*x^2 + b*x + c)^(-1)
.
Functions
- Standard functions: Functions, such as , , , , and so on can be entered using their usual names. However, the argument must always be enclosed in brackets: should be entered as
sin(x)
, should be entered asln(3)
and so on. - Modulus function: The modulus function, sometimes called the absolute value of x, is written as |x| in traditional notation. This must be entered as
abs(x)
.
Trigonometrical functions
Things to remember:
- STACK uses radians for the angles not degrees!
- The function must be referred to as
csc(x)
rather thancosec(x)
(or you can just call it1/sin(x)
if you prefer).- should be entered as
sin(x)^2
(which is what it really means, after all). Similarly for , and so on. - Recall that traditionally means the number such that , which is of course completely different from the number . This traditional notation is really rather unfortunate and is not used by the CAS; instead, should be entered as
asin(x)
. Similarly, should be entered asatan(x)
and so on.
- should be entered as
Exponentials and Logarithms
- You should always write
exp(x)
. Typinge^x
should work in STACK, but gets you into bad habits when using a CAS later! - Currently in STACK both and are the natural logarithms with base . Note that both of these start with a lower case l, not a capital I.
- Log to base is entered as
lg
.
Matrices
You may be given a grid of boxes to fill in. If not, the teacher may provide a hint as to the correct syntax. Otherwise you will need to use Maxima's notation for entering the matrix.
The matrix:
must be entered as matrix([1,2,3],[4,5,6])
.
Each row is entered as a list, and these should be the same length. The function matrix is used to indicate this is a matrix and not a "list of lists".
Equations and Inequalities
Equations can be entered using the equals sign. For example, to enter the equation type y=x^2-2*x+1
.
Inequalities can be entered using the greater than and less than signs on the keyboard. Notice that there are four possibilities for you to choose from: <
or >
or <=
or >=
. Note there is no space between these symbols, and the equality must come second when it is used, i.e. you cannot use =<
.
Sometimes you will need to connect inequalities together as x>1 and x<=5
. You must use the logical connectives and
and or
. "Chained inequalities" such as are not permitted as input syntax. You should enter this as 1<x and x<5
.
Other notes
- Greek letters can be entered using their English names. For example, enter as
alpha+beta
, and as2*pi
. - Sets: To enter a set such as in Maxima you could use the function
set(1,2,3)
, or use curly brackets and type{1,2,3}
. - Lists: can be entered using square brackets. For example, to enter the list 1,2,2,3 type
[1,2,2,3]
. - Note that you do not need a semicolon at the end, unlike when you are using a CAS directly.
You can also learn about the right syntax by doing tests in practice mode and asking for the solutions; as well as displaying the right answers in ordinary mathematical notation, STACK will tell you how they could be entered. However, there are often several possible ways, and STACK will not always suggest the easiest one.
If you have difficulties in entering your answer into STACK you should contact your teacher.