Patterns and Expressions

Key Questions

  • Answer:

    This question is rather general, so I will only address a small fragment of it...

    Explanation:

    How do you identify patterns and express them as algebraic expressions?

    For example, given the sequence #1, 4, 10, 20, 35, 56#

    What is the pattern? How do you find the next number in the sequence? What is the formula for the #n^(th)# term in the sequence?

    With these sort of problems, it is often helpful to construct a sequence of differences between successive terms, repeating this process to see if you end up with a constant sequence...

    #1, 4, 10, 20, 35, 56#
    # -> 3, 6, 10, 15, 21#
    # -> 3, 4, 5, 6 #
    # -> 1, 1, 1 #

    Since it has taken #3# steps to get to a constant sequence, the original sequence is expressible as a cubic expression.

    We can directly construct the formula for #a_n# from the first term of each of these sequences as:

    #a_n = color(red)(1) + color(red)(3) * n/(1!) + color(red)(3) * (n(n-1))/(2!) + color(red)(1) * (n(n-1)(n-2))/(3!)#

    I rather like this discrete variant on Taylor's theorem.

    This approach will not work well with the Fibonacci sequence, since it is essentially exponential, not polynomial...

    #0, 1, 1, 2, 3, 5, 8, 13, 21, 34#
    #-> 1, 0, 1, 1, 2, 3, 5, 8, 13#
    #-> -1, 1, 0, 1, 1, 2, 3, 5#
    #-> 2, -1, 1, 0, 1, 1, 2#
    #-> -3, 2, -1, 1, 0, 1#
    #-> 5, -3, 2, -1, 1#
    ...

    But it is possible to find a formula for #F_n#, viz

    #F_n = (phi^n - (-phi)^-n)/sqrt(5)#

    where #phi = (1+sqrt(5))/2#

    Even the area of numeric sequences is too big to give a full answer.

  • That would vary on what is meant on "sum", "difference" and "product". Other than that exception, sum, difference, product, and quotient are just fancy words for adding, subtracting, multiplying, and dividing respectively.
    There are the simple symbols: #a+b,a-b,axxb, a-:b# (or #a/b#).
    There is a special symbol for difference used in some math and science equations: #Deltax#
    This means there is a final value and an initial #x# value. You would simply subtract the final and the initial to get the change or difference.

    This is used in the equation to find the slope of a line:
    #(Deltay)/(Deltax)#

    Is the same as

    #(y_2-y_1)/(x_2-x_1)#
    This means you subtract y-coordinate points and x-coordinate points on a line to find the slope.

    There is also a special symbol for summing and products, and it can get a little confusing:

    #sum_(n=0)^10 n#

    This is the symbol for summing a function of #n# denoted as a capital sigma
    The bottom number denoted as #n# is the starting number.
    The top number is the ending number.
    You then plug in #n# for each number up to 10 and add them up.
    The answer to the summing operation above is 55.

    #prod_(n=1)^10 n#

    This is the symbol for product denoted as a capital pi (this is NOT #3.14159265...# pi, that's lowercase) . The same rules for summing apply to products, but you multiply instead of add. The answer to the above product is 3,628,800.

    That is also the answer to #10!# Note that #n# starts at 1 and not 0 in the product.

    As for a special quotient symbol, I'm not 100% sure if such a thing exists.

  • Answer:

    Algebraic expressions are formed of integer constants and variables. They follow algebraic operations such as addition, subtraction, division, and multiplication.

    Explanation:

    #2x(3-x)# is an algebraic expression in factorised form. Another example is #(x+3)(x+10)#.

    Algebraic expressions can also have powers (indices): #(x^2+3)x^3#

    The expressions have multiple variables as well: #xy(2-x)#

    Etc.

Questions