Wednesday, June 28, 2017

calculus - Recursive square root problem


Give a precise meaning to evaluate the following: 1+1+1+1+




Since I think it has a recursive structure (does it?), I reduce the equation to


p=1+p

p2=1+p
p2p1=0
p=1±52


Did I do this right?

No comments:

Post a Comment

analysis - Injection, making bijection

I have injection f:AB and I want to get bijection. Can I just resting codomain to f(A)? I know that every function i...