Here's what I want to check:
Given f(x),ϵ>0,L∈R and N(ϵ)
is n>N(ϵ)⇒|f(n)−L|<3
true?
I thought I could accomplish this using symbolic expressions and assume()
. This is what I've tried:
forget()
var('ep, n')
f(x)=1/(n+7)
N = (1/ep)-7
assume(ep>0)
assume(n>N)
show(abs(f(n)-0)<ep)
bool(abs(f(n)-0)<ep)
But the result of is False. What is the proper way to do this in Sage?