Algebra Flashcards

1
Q

What are the versions of these operators on vdmlab:

x, +, -, divide, ^x, root.

A

*, +, -, /, **, **(1/x).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is a variable in maths?

A

A single letter which represents an unknown value. We use them when we are trying to figure out the value they represent or to say that something is true no matter what it’s value is.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What does algebra do?

A

Deals with combining values using operators to create expressions. Sometimes these are known, sometimes we use variables to represent those we don’t know.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is a constant?

A

A value which we know.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is a natural number?

A

A positive, whole number (0, 1, 5, 90)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is an integer?

A

A positive/negative whole number (0, -20, 5)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is a real number?

A

A positive/negative whole/fractional number (0, -20, 5, 4.5, 20,9)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is true of operators?

A

Combine 2 numeric values + create a result. For most operators, if input values are integers, result will be integer. Tend to come in pairs where 1 is inverse of other and undoes its effect e.g. +/-, *//

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is true of 0?

A

We cannot divide by 0.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

How do we type root in vdmlab?

A

c**(1/b). C is the number we root, b is the number which we are rooting by (e.g. b is 2 for square root)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

How do we use power/root to find a variable?

A

Inverse of power is root (32=9 so 9(1/2)). If ab=c, c=a(1/b). Can only be used to find c.
To find b, we must use log. if ab=c, b=log↓ac e.g. 23=8 so 3 = log↓28. To type this in vdmlab, we say log (a,b) so 3 = log(2,8)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

How do we divide when there is going to be a remainder?

A

We use div to get an integer + mod to get the remainder e.g. 13 div 5 = 2, 13 mod 5 = 3. The answer to the mod equation shouldn’t be as big as what we divide by.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

How do we find x from div + mod answer

A

If a div b = d + a mod b = m, then a = d*b+m

e.g. x div 5 = 2, x mod 5 = 3.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What is a sequence?

A

A list of values which are separated by commas + surrounded by square brackets. e.g. [1, 5, 7, 9] or [].

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

How do we find the length of a sequence?

A

Len function e.g. len([2, 3, 4]) = 3 or s=[1, 25, 7], then len (s) = 3.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

How do we access an element of a sequence based on its position?

A

s = [4, 6, 1, 2]. s (3) = 1

17
Q

How do we add up the elements of a sequence?

A

We use sigma (sum), we can use it for consecutive nums.

We will show these on ppt.

18
Q

How do we find the product of a sequence?

A

Use pi, again used for consecutive numbers.

19
Q

What must be aware of when combining operators?

A

The order of operations (BIDMAS). Operators with same precedence are evaluated left to right. ()is highest, then **, then *, /, div, mod, then +, -. If we have x^y^^z, then we evaluate top to bottom e.g. w = y^z, then w^x.

20
Q

How do we find x in an equation?

A

We must apply the same modification to both sides of the equation until one side has become exactly x or search for x by guessing through trial + error.