ALL Flashcards
(194 cards)
What is a Complex number?
combination of a real number added with an imaginary number (a+bi)
What are Real numbers? Are they a subset of any other types?
All numbers except imaginary (not a subset)
What are Rational Numbers? Are they a subset of any other types?
All numbers that are real (not i) and do not extend forever (pi, Sqrt(2)) - this is a subset of Real numbers
What are Irrational Numbers? Are they a subset of any other types?
Numbers that extend forever (pi, sqrt(2)) - this is a subset of Real numbers.
What are Natural Numbers? Are they a subset of any other types?
Whole, positive numbers (also called Whole Numbers? counting numbers?) - this is the most exclusive subset of numbers.
What are Integers? Are they a subset of any other types?
Whole numbers (includes negatives, I.E. Natural Numbers and their additive inverse). - This is a subset of Real numbers and a subset of Rational Numbers.
What are Imaginary numbers? Are they a subset of any other types?
sqrt of negative numbers, i. (not a subset)
What is a Conjugate?
Two sets of numbers that, for one set are added and the second set subtracted. (2+sqrt(2) and 2-sqrt(2) are conjugates).
You can multiply something by it’s conjugate to get squares (E.G., (x-y)*(x+y) = x^2 - y^2. This becomes even more useful when dealing with complex numbers (5-4i multiplied with it’s conjugate becomes 41)
Sometimes annotated with a line over the variable, sometimes with an asterisk*
What is a quotient?
“results obtained by dividing”
What are other names for the length and angle of a vector?
Length: Magnitude, Absolute Value, Modulus
Angle: Argument note: argument is also the name of the term/expression on which a function operates (e.g. for y=LOGa(x), x is the argument.
What is the Quadratic Formula?
[-b +/- sqrt(b^2 - 4ac)]/2a
Which is the difference between <2, 3> and (2, 3)
<2, 3> is a vector whereas (2, 3) is an ordered pair (which could be a point on a graph rather than the vector from (0, 0) to that point)
What is the equation of a parabola written in Vertex Form?
y = a(x-h)^2 + k (I think this is also called standard form? The other is called the general form..)
the vertex of the parabola is (h, k), and a is where the parabola crosses the y axis (set x=0 and solve).
If the vertex is not known but the “roots” (y=0) are, then you can write the equation as y = a(x-r1)(x-r2) where r1 and r2 are the two roots, then you can expand this to the quadratic formula, use algebra to equate h and k to b and c (a is still a), and then re-write in vertex form.. spoiler alert: h=b/(-2a) and k=c-ah^2. This process is known as “completing the square”
what is the general form of a parabola?
y = ax^2 + bx + c
What are Permutations (probability), and what is the basic equation?
Used when forming a subset and order matters (e.g., listing number of options for filling out a baseball lineup where batting order matters given a certain roster size)
n!/(n-k)! where n = number of options & k = number of selections. (e.g., for a baseball team with 26 players, the number of 9-man lineup permutations is 26!/(26-9)!
)
What are Combinations (probability)
Used when forming a subset and order does not matter (e.g., listing the number of options for starters of a soccer match given a certain roster size)
n!/(k!(n-k)!) where n = number of options and k = number of selections. (e.g. for establishing 11 starters from a 16 man roster - ignoring positions - the number of possible combinations is 16!/(11!(16-11)! )
What is the Euclidean Algorithm and how do you use it?
It is a method for determining the highest possible common divisor. To do it, you divide the larger number by the smaller number which results in a number and a remainder. You then divide the previous denominator by the remainder and continue this until the remainder is 0. At that point, your previous remainder is the highest common divisor.
E.G. for 21 and 35: 35/21=1r14 21/14=1r7 14/7=2r0 so the highest common divisor is 7.
The highest number of possible steps required is 5 times the number of digits in the smaller number, so in the example that would be 5x2, or 10 steps. If you go 10 steps and still have a remainder, the numbers have no common divisor.
What is Least Common Multiple (LCM)?
The lowest number that can be divided by two given numbers.
E.G, the LCM of 45 and 120 is 360
What is an additive inverse
The number you would add to get back to zero. E.G. The additive inverse of 69 is -69
What is a geometric sequence?
In a geometric sequence, any term (other than the first) can be divided by the previous term to obtain a common ratio. The next term is then determined by multiplying by that ratio.
What is an arithmetic sequence?
A sequence where each term differs from the previous term by a constant amount (e.g., 3, 6, 9, 12,…)
An=n(x) where x is the difference in each step (3 for the example above)
What is a Fibonacci sequence?
A sequence where each term is the sum of the two previous terms, and the first two terms are both 1
(1, 1, 2, 3, 5, 8,…)
What is a Lucas sequence?
A sequence where each term is the sum of the two previous terms, and the first two terms are 1 & 3
(1, 3, 4, 7, 11, …)
What does “Composition of Functions” describe?
using the output of one function as input for another e.g. g(f(x)) ; This is different from g(x)*f(x) or g(x)+f(x)