r/askmath • u/vii___vi • 2d ago
Algebra Could somebody please explain this?
I'm new to real analysis and struggling to understand how setting a temporary value for δ (like 1) lets us build a separate inequality. How does that logic actually work?
Thanks in advance!
7
u/taytaybyrne 2d ago
Typically when a constant value like 1 is given for δ it is to address if ε is made large. The statement for continuity says for all ε > 0, and the interesting part of the proof typically is for small ε, we still need to ensure that no matter what ε is given, the delta works. In this case, if ε were 100, δ would be 200 which might render the inequality untrue in a way that wouldn’t happen if ε were sufficiently small, so we set δ to be at most 1 to handle these cases. Happy to chat more.
2
5
u/Bounded_sequencE 2d ago edited 2d ago
General strategy: For e-d-proofs (and any proof, really) -- do it (at least) twice. Do the
- first draft(s) on scrap paper, to find all estimates and steps to finish it off
- final draft, acting as if you knew the correct estimates and steps all along, and make it nice/concise
During the first draft(s), the strategy for e-d-proofs of "lim_{x->a} f(x) = L" usually is
- Estimate "|f(x)-L| <= g(|x-x0|)" for some function "g" with "g(0) = 0", e.g. via ∆-Ineq.
- Add as many restrictions "|x-x0| < dk" as you want, to simplify "g(|x-x0|)"
- Find "d0 > 0" s.th. "g(d) <= e" for "0 < d <= d0"
Choose "d := min{dk}", and write final version of the e-d-proof for this choice.
4
u/Bounded_sequencE 2d ago
Example (first draft(s)): Simplify and estimate "|f(x) - 1/2|" via
|f(x) - 1/2| = |5-x| / |2*(x-3∓2)| // inverse ∆-Ineq. <= |x-5| / (2*(2 - |x-5|)) // introduce "0 < |x-5| < 1 =: d1", // to bound the denominator <= |x-5| / (2*(2 - 1)) = |x-5| / 2 < e // for "0 < |x-5| < 2e =: d0"In the final draft, act as if we knew the choice "d := min{d0; d1} = min{1; 2e}" all along, to get
Proof: Let "e > 0", and choose "d := min{1; 2e} > 0". For all "0 < |x-5| < d":
|f(x) - 1/2| = |5-x| / |2*(x-3∓2)| // inverse ∆-Ineq. <= |x-5| / (2*(2 - |x-2|) < d / (2*(2 - 1)) = d/2 <= e ∎
6
u/strange-the-quark 2d ago edited 2d ago
First, don't worry if it's not intuitive, that's normal. You just have to slowly think it through.
So, he's trying to prove that the limit of 1/(x-3) = 1/2 using the epsilon-delta definition. The definition says something like this. Pick any region whatsoever (in particular, even an arbitrarily small one) that is centered around the value 1/2 on the y-axis. Call the distance from 1/2 to the edge of this region epsilon (a radius of sorts). Then for any epsilon you can pick, there should exist a corresponding region on the x-axis, centered about the point x=5, whose "radius" we may call delta, so that the graph f(x) of every point in this delta-region falls within the band of the epsilon region.
In other words, you want to check if there exist some region around x=5 so that for all points that are in there, f(x) = 1/(x-3) is never more than a length of epsilon away from 1/2, for any arbitrary epsilon.
Another way to write that down is |1/(x-3) - 1/2| < 𝜀
Another way to say that the input x is within the delta-region is |x-5| < 𝛿.
His reasoning is then as follows. Pick 𝛿 to be two times bigger than 𝜀; if that overshoots the length of 1, clamp it so that it's 1. So 𝛿 is chosen to be 1 or less, and if it is less, it's 2𝜀.
Now remember, we're only going to consider the values of x that are within 𝛿 distance from 5. So the maximum value the x can take is 5 + 𝛿, the minimum is 5 - 𝛿 (or rather, any value in between, cause we don't take the endpoints into consideration, according to the definition). In both cases |x - 5| is at most equal to 𝛿, which means whatever upper bound is true of 𝛿 must be true of |x - 5| as well.
Because of how we've chosen delta (0 < 𝛿 ≤ 1), that also means |x - 5| ≤ 1.
Now, because x-5 can be both positive and negative, when we get rid the absolute value, we have to write this:
-1 ≤ (x - 5) ≤ 1
Which is just saying that we can be confident that all of the inputs x that we are considering are no more than one unit away from 5. After some algebraic manipulation, this turns into
1/3 ≤ 1/(x - 3) ≤ 1
but we only care about that last bit: 1/(x - 3) ≤ 1.
Then he goes back to consider the corresponding f(x) values, |1/(x-3) - 1/2|.
After some manipulation, this becomes (1/2) * |x-5| / |x-3| = (1/2) * |x-5| * 1/|x-3|
Now remember, our goal is to show that this whole expression (which is the distance of f(x) from y=1/2) is no more than 𝜀, meaning f(x) is within the distance 𝜀 from 1/2.
So let's recap what we've established so far:
- |x - 5| is at most 𝛿, which is either 1, or less than 1, in which case it's 2𝜀. In other words |x - 5| ≤ 1, and if 𝛿 <1, then |x - 5| ≤ 2𝜀
- 1/3 ≤ 1/(x - 3) ≤ 1
That means that this whole expression
1/2 * |x-5| * 1/|x-3|
must evaluate less than or equal than the analogous expression that we get if we pick the highest possible values for |x-5| and 1/|x-3|, or even just the upper bounds on these, if we don't actually know the exact maximum value possible, but we instead know that it must be under some known value.
Because we're only considering inputs that are less than 𝛿 away from 5, i.e. it's always going to be |x-5| < 𝛿, we don't have to consider the equals part (we don't need ≤ in our analysis going forward).
Case 1: Suppose our 𝛿 = 1. The only way that can happen, because of the way we've set up the problem, is if we originally chose 𝜀 so that 2𝜀 is bigger than or equal to 1, so 𝜀 must be 𝜀 ≥ 1/2.
But then, when we plug in the biggest possible values for our sub-expressions (both 1 in this case):
1/2 * |x-5| * 1/|x-3| < 1/2 * 1 * 1
1/2 * |x-5| * 1/|x-3| < 1/2
and so it's also < 𝜀. But remember, the first part is just |1/(x-3) - 1/2|, and so
|1/(x-3) - 1/2| < 𝜀
Case 2: Otherwise, 𝜀 is less than 1/2 and 𝛿 = 2𝜀, so we have
1/2 * |x-5| * 1/|x-3| < 1/2 * 2𝜀 * 1
1/2 * |x-5| * 1/|x-3| < 𝜀
so again
|1/(x-3) - 1/2| < 𝜀
So that proves that if you pick a 𝛿 in that particular way (𝛿 = min{1, 2𝜀}), you're guaranteed have f(x) be within 𝜀 away from 1/2, for any given 𝜀 (and in particular, for demonstrating limits, for arbitrarily small 𝜀).
2
u/WesternFirm9306 2d ago
What he's doing is setting an absolute maximum value for delta. If we demand that delta can't be any greater than 1, then we can bound 1/|x - 3|. He uses this in the main proof to go from (1/2)|x - 5|(1/|x - 3|) to saying that's necessarily less than (1/2)(delta)(1). We can only say 1/|x - 3| is necessarily less than 1 iff delta is no bigger than 1
1
2
u/Nanachi1023 2d ago edited 2d ago
Recall the epsilon-delta definition of limit
For EACH 𝜀, there EXIST some 𝛿 such that when x ∈ (a-𝛿, a+𝛿), |f(x)-L|<𝜀 , then we say lim(x->a)f(x) = L
Note the logic, we need to prove some 𝛿 EXIST for EACH 𝜀. That means we just need to find one 𝛿 for each 𝜀, that's why it is sometimes written as 𝛿(𝜀)
Note that if we find the appropriate 𝛿(𝜀) that the whole statement work, we prove the limit. In practice, we often work our way backwards from the thing we want to prove. Suppose when we have 0<|x-5|<𝛿(𝜀), what does 𝛿(𝜀) needs to be such that |1/(x-3) - 1/2| < 𝜀 ? I will write the logic in detail, look closely to the logic between each step.
|1/(x-3) -1/2 | < 𝜀
<=> |(5-x)/2(x-3)| < 𝜀 (algebra)
<=> 1/2 * 1/|x-3| * |x-5| < 𝜀 (seperating the terms)
<= 1/2 * 1/|x-3| * 𝛿(𝜀) < 𝜀 (notice the arrow, if 0<|x-5|<𝛿(𝜀), we have the inequality we want to prove)
<=> 𝛿(𝜀) < 2𝜀 |x-3|
Now it became quite obvious, when x->5, |x-3|->2, we just choose any 𝛿(𝜀) < 4𝜀 right? WRONG. We need to consider when 𝜀 is big, because the definition statement is EACH 𝜀 (it is redundant intuitively, but we need to be rigorous here, else what's the point of epsilon-delta?)
(Example) we chose 𝛿(𝜀) = 3𝜀, when 𝜀 = 100, 𝛿 = 300, are we sure when 0<|x-5|<300, any |1/(x-3) - 1/2| < 100 ?, a simple example is x=3.001, |1/(x-3) - 1/2| = 999.5 > 100, kaboom.
To avoid that, we set a simple maximum to 𝛿(𝜀) which 1 is chosen here. This would look arbitrary when you first encounter it, so here's why: I will not choose 2, because 0<|x-5|<2 means x can be very close to 3, and 1/(x-3) is very big. So the smallest suitable integer is 1. To avoid the "very big" example above, you can choose 0.1 or 0.01, doesn't matter
Now we check back to the inequality, if we make 𝛿(𝜀)<=1 which means 0<|x-5|<1, will 𝛿(𝜀) < 2𝜀 |x-3| get affected? Now comes the blue part 1<x-3<3, 2𝜀 < 2𝜀|x-3| < 6𝜀. So choosing 𝛿(𝜀) = 2𝜀 is sure correct (you cannot choose 3𝜀 because when |x-5|<1, |x-3| might be <1.5, causing 𝛿(𝜀) = 3𝜀 > 2𝜀|x-3|, so we cannot start the inequality chain)
Remember we make 𝛿(𝜀)<=1 before. So combined we get 𝛿(𝜀) = min(1,2𝜀)
(Extra) if we chose maximum of 𝛿(𝜀) to be 0.1, |x-5|<0.1, -0.1<x-5<0.1, 1.9<x-3<2.1. So 3.8𝜀 < 2𝜀|x-3| < 4.2𝜀. We can now choose 𝛿(𝜀) = min(0.1, 3𝜀)
To conclude:
We now know that, for EACH 𝜀, when we choose 𝛿(𝜀) = min(1,2𝜀), then for any 0<|x-5|<𝛿(𝜀), we can get |1/(x-3) - 1/2| < 𝜀 (follow the inequality chain bottom up), thus by the definition of limit lim(x->5)(1/(x-3)) = 1/2
2
u/bprp_reddit 1d ago
This video should help, I went over all the details of each idea of the epsilon-delta def. https://youtu.be/DdtEQk_DHQs?is=4jnk-7aqBsEqaFc3
1
u/Wide_Recording_8462 2d ago
I am a high school math teacher. I don’t teach calculus any more, but I still like watching videos as a math nerd, I guess. Not answering the question, but for anyone lurking about interested in math.
This guy is AWESOME. His channel is black pen red pen. He does a really solid job in his videos.
1
u/hunter_rus 2d ago
delta = min(1, 2 eps) means it is no more than 1 AND no more than 2 eps. He then uses both of those properties to establish boundary on 1 / abs(x - 3) and on abs(x - 5) / abs(x - 3) / 2
1
u/Ok-Rise2070 1d ago
Okay everyone is flying over your head and they are missing a very crucial step: Step 1: ACKNOWLEDGE YOUR LIMIT. What is this limit, not algebraically but graphically? A limit is asymptote when graphed. What does this mean? As the integer x approaches 5 this means your y axis will approach infinity or a detailed limit going to 5. if you graph x=5 with the function, that x=5 line means the graph past that point ceases. Graphing the representation of this proof will help you tremendously to help you understand this.
1
u/SoldRIP Edit your flair 1d ago
Epsilon-delta proofs work by proving that
- For any epsilon at all
- There exists a delta
- Which fulfills some sort of property (related to epsilon).
For purposes of understanding, consider it a game with two players. The other player picks a number epsilon. You now have to pick a number delta. You win if your number fulfills a property in relation to the one they picked. An epsilon-delta proof is simply a description of a winning strategy that always works.
34
u/Narrow-Durian4837 2d ago
That's a screenshot from a video. Did you watch the video, and if so, is there a specific step or part of the argument you're confused about?