Good afternoon. Yesterday at school, I created an equation, which although it is not anything out of the world, but is my first equation for myself.
I thought:
What do I do to create an equation?
A: // Assign an algebraic term to each object that varies.
This equation is for simple succession such as:
9,5,1,-3,-7 Problem: find the sixth number of the successon.
Pattern: -4 | My equation: -(p * c) + (p + i)
Where:
p = pattern of succession
c = The position of number that we want find (e.g. sixth)
i = The first number of succession
So: -(4 * 6) + (4 + 9) -> -18 + 12 = -24 + 13 = -11
And it work perfectly, for all cases( i think), that made me quite happy.
Also, I also did it for the 4 basic operations:
Multiplication case: (p^c) * (i/p) e.g. pattern = n * 4
6,24,96, ? -> c = 4 , i = 6 , p = 4 ==> (4^4) * (6/4) = 384
Division case: (p^-c) * (i*p)
Well, I like it. But how could it be made for my equation to be valid for any succession pattern ?, I mean imagine that the pattern is now something more complicated like:
a (n) = n * 2 + !n
Any ideas ?, what I've done, as it was originally called? Is there the actual equation for this? Please some answers for me are difficult to understand, because I have only knowledge of the school, the eleventh grade.