Maths Flashcards
1
Q
What is a logarithmic function?
A
A logarithmic function is the inverse of an exponential function. In other words, as n
doubles, the function increases by 1. For f(n) = log₂(n)
, when n
= 2 its size is 1, and when n
= 4 its size is 2
2
Q
What is an exponential function?
A
An exponential function is a function that grows exponentially. In other words, as n
increases by 1, the function doubles in size. For example, for f(n) = 2ⁿ
, when n
= 2 its size is 4, and when n
= 3 its size is 8
3
Q
- What is one way of thinking about exponents?
- What is one way of thinking about logarithms?
A
- You can think of exponents as repeated multiplication of base number
- You can think of logarithms as repeated division by base number
4
Q
What is a “permutation”
A
A permutation is an arrangement or combination of elements
5
Q
What does it mean if set B is a subset of A?
A
It means all of the elements of B exist in A
6
Q
- What is an arithmetic sequence?
- What is the formula to calculate the sum of an arithmetic sequence?
A
- An arithmetic sequence is a sequence of elements whose differences are constant
sum = (firstElement + lastElement) * size / 2
7
Q
- What is a geometric sequence?
- What is the formula to calculate the sum of a geometric sequence?
A
- A geometric sequence is a sequence of elements whose differences are a constant ratio
firstElement * (1 - ratio^size) / (1 - ratio)