Matrices
Requences & Summations
Mathematical Reasoing
Recursive Definition
(all maths)
if got a few example will be great
please =(
can't understand a thing in class
sure. how much you paying me?
Good point, skythewood. Sounds like [J]erry certainly needs a personal tuition teacher (eg. eagle). If [J]erry "can't understand a thing in class", even daily remedial lessons by his (overworked and underpaid) school teacher won't be enough for Jerry to pass, let alone score a distinction. Which is why (good) tuition teachers are an important service to society.
i'm looking for one already..
Originally posted by [J]erry:i'm looking for one already..
And in case you're also looking for tuition for Chemistry ('A' or 'O' levels), my details are here.
lol... i need an IT teacher more
getting a diplo' in IT
Hi Jerry,
A sequence is a list of numbers that may be generated by a particular rule. For example: 1, 3, 5, 7, 9, ... is a sequence of odd numbers produced by the rule 2n + 1, where n = 1, 2, 3, ... .
A summation is the sum of the terms in the sequence. For example: 1 + 3 + 5 + 7 + ... + 27 = sigma{n = 1, 13} (2n + 1}.
This is an example of a recursive definition:
x(1) = 1,
x(n) = n * x(n - 1).
In such a definition, it is necessary to have one or more BASE case(s) as well as one or more REPEATED call(s).
Say we wish to compute x(5):
From the above definition, x(5) = 5 * x(4), which means x(5) will call x(4).
Then x(4) = 4 * x(3), which means x(4) will call x(3).
Then x(3) = 3 * x(2), which means x(3) will call x(2)
Then x(2) = 2 * x(1), which means x(2) will call x(1), the base case.
Then x(1) = 1 and the process of repeated calls stops.
Next, we go back to x(2) and compute it as 2 * 1 = 2.
Then we go back to x(3) and compute it as 3 * 2 = 6.
Then we go back to x(4) and compute it as 4 * 6 = 24.
Finally, we compute x(5) as 5 * 24 = 120.
Hope you are clearer now. Thanks!
P.S. I am unsure of what you meant by mathematical reasoning? Could you say more, by referring to your notes? Thanks!
Cheers,
Wen Shih
Hi,
I forgot to mention about matrices.
It is simply a table of rows and columns to represent information.
Below is a nice site to read and understand the topic of matrices:
http://www.sosmath.com/matrix/matrix0/matrix0.html
I would advise you to seek help from your poly tutor or classmates. Thanks!
P.S. If you like, we could meet for you to consult me with your notes :) Please drop me a message via the forum's mailbox. Thanks!
Cheers,
Wen Shih