Discover the Secret Formula for Relating N and t in this Number Pattern

  • Thread starter Thread starter orthovector
  • Start date Start date
orthovector
Messages
115
Reaction score
0
anybody know how I can relate N with t?


when N=1 t=0, N=2 t=1, N=3 t=3, N=4 t=6, N=5 t=10, N=6 t=15, N=7 t=21...and so on.

i need to derived a formula that relates N to t.

HELP!
 
Physics news on Phys.org
Each increment in t jumps by one more than the preceding increment. The t-sequence is {0, 1, 3, 6, 10, 15, 21, ...}

There's a way to solve this using difference equations (which are something like differential equations, but not the same). In this problem the first differences are 1, 2, 3, 4, and so on, and the second differences are all 1.

The technique escapes me at the moment, and I'm heading off to bed. In the meantime, you might try a search for "difference equations" and see if that helps you.
 
Start by tabulating values of N and N squared.
 
Mark44 said:
Each increment in t jumps by one more than the preceding increment. The t-sequence is {0, 1, 3, 6, 10, 15, 21, ...}

There's a way to solve this using difference equations (which are something like differential equations, but not the same). In this problem the first differences are 1, 2, 3, 4, and so on, and the second differences are all 1.

The technique escapes me at the moment, and I'm heading off to bed. In the meantime, you might try a search for "difference equations" and see if that helps you.

thanks mark, I'll try to work on it a bit more...I think these number patterns are very interesting...
 
help!
 
This is actually a bit simpler than I first thought. Here are the numbers you gave, plus a few more, assuming they follow the same pattern
Code:
N |1|2|3|4| 5| 6| 7| 8| 9|
---------------------------
t |0|1|3|6|10|15|21|28|37|

First, I'd like to get rid of t, and switch to aN, since I would like to be able to identify which value in the second row I'm talking about. The bottom row has values of ai, where i >= 1. I stared at the table for a while, then noticed this pattern:
a1 = 0
a2 = a1 + 1
a3 = a2 + 2
a4 = a3 + 3
.
.
.
aN = ? + ?

That should get you started.
 
Prove $$\int\limits_0^{\sqrt2/4}\frac{1}{\sqrt{x-x^2}}\arcsin\sqrt{\frac{(x-1)\left(x-1+x\sqrt{9-16x}\right)}{1-2x}} \, \mathrm dx = \frac{\pi^2}{8}.$$ Let $$I = \int\limits_0^{\sqrt 2 / 4}\frac{1}{\sqrt{x-x^2}}\arcsin\sqrt{\frac{(x-1)\left(x-1+x\sqrt{9-16x}\right)}{1-2x}} \, \mathrm dx. \tag{1}$$ The representation integral of ##\arcsin## is $$\arcsin u = \int\limits_{0}^{1} \frac{\mathrm dt}{\sqrt{1-t^2}}, \qquad 0 \leqslant u \leqslant 1.$$ Plugging identity above into ##(1)## with ##u...
Back
Top