Functions Flashcards

(20 cards)

1
Q

What is a function?

A

A function f from a nonempty set A to a nonempty set B is an assignment of each element of A to exactly one element of B.

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

What is function equality?

A

Two functions are equal iff they have the same domain, the same codomain and map element of the domain to the same element of the codomain.

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

What is an injective function?

A

A function f is 1:1 or injective if and only if f(a) = f(b) implies that a=b for all a and b in the domain of f.

Every element in the domain must map to a different element in the codomain.

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

What is a surjective function?

A

A function f from A to B is called onto or surjective if and only if for every element b∈B there is an element in a∈A with f(a)=b.

Every element in the codomain must be mapped to from some element in the domain.

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

What is a bijective function?

A

A function f is a 1:1 corresponence or a bijection, if it is both surjective and injective - each element in the domain maps to a different element in the codomain and all elements in the codomain must be mapped to.

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

Suppose f: A→B. How do you show f is injective?

A

Assume f(x) = f(y) and show x=y

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

Suppose f: A→B. How do you show f is not injective?

A

Find x,y ∈ A such that x≠y and f(x) = f(y)

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

Suppose f: A→B. How do you show f is surjective?

A

Consider an arbitrary element y∈B and find an element x∈A such that f(x) = y

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

Suppose f: A→B. How do you show f is not surjective?

A

Find y∈B such that f(x)≠y for all x∈A.

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

What is the other way of writing f◦g(x)?

A

f(g(x))

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

Is f: N→N, with f(x) = x² injective, surjective, bijective, or none?

A

Injective

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

What is a sequence?

A

A function from a subset of the integers to a set S.

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

What does aₙ denote?

A

Used instead of a(n) to denote the nth element. It is a term of the sequence

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

What is the formula for a geometric sequence?

A

arⁿ⁻¹

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

What is the formula for an arithmetic sequence?

A

a + (n-1)d

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

What is a recurrence relation for the sequence {aₙ}?

A

An equation that expresses aₙ in terms of one or more of the previous terms of the sequence

17
Q

What does it mean if you are asked to solve a recurrence relation?

A

Find a formula for the nth term of the sequence generated by the recurrence relation. The formula is called the closed formula

18
Q

What is the index of a summation?

A

The variable j where j=m underneath the summation sign

19
Q

When doing proof by induction with summations, after you have assumed the inital statement, what do you do next?

A

On the top of the summation change k to k+1, then write that this equals the initial summation with k on the top, but add (k+1) to the whole thing and simplify

20
Q

What is the first step in a geometric proof?

A

After the initial Sₙ = … statement, write “Then rSₙ =” with an r in front of the initial statement.