Functions and Sequences Flashcards
(8 cards)
Function Definition
A function from a set X to a set Y assigns to each element of X exactly one element of Y
Domain
Definition: Set of all inputs that a function can use (THINK: domain = x-value → XD)
Domain example: f(x) = x3 / x2 - √x
→ Domain is x > 0 (all positive real numbers)
Domain tricks:
- Can’t take the square root of a negative number
- Can’t divide by 0
Range
Set of all outputs that the function can generate
For a function of the form f(x) = kxn + c where n is a positive even integer and k is nonzero:
- If k > 0 → range = all real numbers ≥ c
- If k < 0 → range = all real numbers ≤ c
Example: What’s the range of f(x) = 4 - 5x6? → All real numbers ≤ 4
EASIER WAY to conceptualize: Solve the equation for x = ______
Vertical Line Test
- If a graph is the graph of a function, then any vertical line drawn can only intersect the graph at exactly one point or at no points.
- The x-value (input) can produce only one y-value (output)
- A function can only have one output, y, for each unique input, x.
Sequence
- A sequence is an ordered list of numbers in which the order of the numbers is explained by a formula.
- A sequences is actually a function
- e.g., 0, 3, 6, 9, 12 → an = 3(n - 1)
- If the first few terms of a sequence are given, but the rule is not given, we cannot determine any further terms in the sequence.
Sequence: Recursive Notation
-
Recursive: e.g., an = 3an-1
- To find a term, we must know ALL the terms prior to it
-
Explicit: an = n + 1 (not recursive)
- To find a term, we don’t need to know the terms prior to it.
Arithmetic Sequence
Difference between every pair of two consecutive terms is the same
an = a1 + (n - 1)d
Sum: Sn = (a1 + an)n / 2
Geometric Sequence
Ratio between every pair of two consecutive terms is the same
an = a1 x rn-1