Lecture 7 Flashcards

1
Q

What is the Big Oh Notation

A

If g(x) > 0 for all x ≥ a, we write

  • f(x) = O(g(x))

to mean that the quotient f(x)/g(x) is bounded for all x ≥ a. That is, there exists a constant C > 0 such that

  • ∣f(x)∣ ≤ Cg(x)

for all x ≥ a. The constant C is often referred to as the implied constant

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

What does An equation of the form
f(x) = h(x) + O(g(x)) mean

A

An equation of the form
f(x) = h(x) + O(g(x))

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

What does f(t) = O(g(t)) imply

for t ≥ a

A

∫^x_a f(t)dt = O (∫^x_a g(t)dt)

for x ≥ a.

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

Vinogradov’s “less than less than” Notation

A

If f(x) = O(g(x)), then we can write this as
* f(x) ≪ g(x)

Furthermore if g(x) ≪ f(x) ≪ g(x), then we can write this as f(x) ≍ g(x)

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

Little Oh Notation

A

If
* lim(x→∞) f(x)/g(x) = 0

we write f(x) = o(g(x))

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

Define Asymptotic

A
  • lim_(x→∞) f(x)/g(x) = 1

we say that f(x) is asymptotic to g(x) as x → ∞, and we write

  • f(x) ∼ g(x) as x → ∞
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is Euler’s summation formula

A

If f has a continuous derivative f′ on the interval [y, x], where 0 < y < x, then

  • ∑_(y<n≤x) f(n) = ∫^x_y f(t)dt + ∫^x_y (t − [t])f′(t)dt + f(x)([x] − x) − f(y)([y] − y)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Define the Riemann-zeta function for s>1

A
  • ζ(s) =∑^∞(n=1) 1/(n^s)

For s>1

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

Define the Riemann-zeta function for f 0 < s < 1

A

ζ(s) = lim_(x→∞)(∑_(n≤x) (1/(n^s)) − x^(1−s)/(1 − s))

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

Define Euler’s constant

A

γ = lim_(n→∞) (∑^n_(k=1) 1/k − log n) .

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

∑_(n≤x) 1/n

Give the asymptotic formula

A

log x + γ + O (1/x)

where γ is Euler’s constant

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

∑_(n≤x) 1/(n^s)

Give the asymptotic formula if s > 0, s ≠ 1.

A

x^(1−s)/(1 − s) + ζ(s) + O(x^(−s))

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

∑_(n≤x) 1/(n^s)

Give the asymptotic formula if s > 1

A

O(x^(1−s))

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

∑_(n≤x) n^α

Give the asymptotic formula if α ≥ 0

A

x^(α+1)/(α + 1)+ O(x^α)

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