How to find out the recurrence relation "Un" with the following information

U0 = 1
Un+1 = Un * √((Un^2)+1)
What is the definition of a recurrence relation? Can you provide an example (of recurrence relation) from your textbook (or Google)?

Please show us what you have tried and exactly where you are stuck.

Please follow the rules of posting in this forum, as enunciated at:

READ BEFORE POSTING

Please share your work/thoughts about this problem.
 
I presume you mean "solve the recurrance relation". You are told that U0= 1 and \(\displaystyle U_{n+1}= U_n\sqrt{U_n^2+ 1}\) so \(\displaystyle U_1= 1\sqrt{1^2+ 1}= \sqrt{2}\), \(\displaystyle U_2= (\sqrt{2})(\sqrt{(\sqrt{2})^2+ 1})= \sqrt{2}\sqrt{3}= \sqrt{6}\), \(\displaystyle U_3= (\sqrt{6})(\sqrt{6+1})= \sqrt{42}\), etc.

Do you see a pattern?
 
Top