+ Reply to Thread
Results 1 to 19 of 19

recursive sums

  1. #1
    JMB
    Guest

    RE: recursive sums

    For you first question

    If you are starting in cell A1:

    =FACT(ROWS(A$1:A1))

    and copy down.

    "Joe" wrote:

    > I would like to know how to generate a column which can fill the cells in the
    > order: FACT(1) ; FACT(2); FACT(3)... etcetera. Apparently it will not work by
    > dragging the cells down.
    >
    > Also, I need to generate a cell which can perform the function of:
    > f(x) = e^x = 1 + (1/1!)*x + (1/2!)*x^2 + (1/3!)*x^3... which by means is the
    > exp fn of the maclaurin series.
    >
    > any help or suggestions is very much appreciated.


  2. #2
    Bob Phillips
    Guest

    Re: recursive sums

    =FACT(ROW(A1))

    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "JMB" <JMB@discussions.microsoft.com> wrote in message
    news:A6B79BD9-3333-4FFF-91E9-1263010B8C6C@microsoft.com...
    > For you first question
    >
    > If you are starting in cell A1:
    >
    > =FACT(ROWS(A$1:A1))
    >
    > and copy down.
    >
    > "Joe" wrote:
    >
    > > I would like to know how to generate a column which can fill the cells

    in the
    > > order: FACT(1) ; FACT(2); FACT(3)... etcetera. Apparently it will not

    work by
    > > dragging the cells down.
    > >
    > > Also, I need to generate a cell which can perform the function of:
    > > f(x) = e^x = 1 + (1/1!)*x + (1/2!)*x^2 + (1/3!)*x^3... which by means is

    the
    > > exp fn of the maclaurin series.
    > >
    > > any help or suggestions is very much appreciated.




  3. #3
    JMB
    Guest

    Re: recursive sums

    Won't that throw an error if the first row or column is deleted (assuming the
    table does not start in cell A1)?


    "Bob Phillips" wrote:

    > =FACT(ROW(A1))
    >
    > --
    >
    > HTH
    >
    > RP
    > (remove nothere from the email address if mailing direct)
    >
    >
    > "JMB" <JMB@discussions.microsoft.com> wrote in message
    > news:A6B79BD9-3333-4FFF-91E9-1263010B8C6C@microsoft.com...
    > > For you first question
    > >
    > > If you are starting in cell A1:
    > >
    > > =FACT(ROWS(A$1:A1))
    > >
    > > and copy down.
    > >
    > > "Joe" wrote:
    > >
    > > > I would like to know how to generate a column which can fill the cells

    > in the
    > > > order: FACT(1) ; FACT(2); FACT(3)... etcetera. Apparently it will not

    > work by
    > > > dragging the cells down.
    > > >
    > > > Also, I need to generate a cell which can perform the function of:
    > > > f(x) = e^x = 1 + (1/1!)*x + (1/2!)*x^2 + (1/3!)*x^3... which by means is

    > the
    > > > exp fn of the maclaurin series.
    > > >
    > > > any help or suggestions is very much appreciated.

    >
    >
    >


  4. #4
    Dana DeLouis
    Guest

    Re: recursive sums

    Hi. Just to add....
    In A1, you could enter this for the first part of the equation.
    =1/FACT(ROW()-1)

    and drag down to say A10. (ie Start w/ Fact(0) )

    Then your Series can be calculated as...

    =SERIESSUM(1,0,1,A1:A10)

    Returns a number close to =EXP(1)
    HTH :>)
    --
    Dana DeLouis
    Win XP & Office 2003


    "Joe" <Joe@discussions.microsoft.com> wrote in message
    news:2253F0CA-54C6-45BC-B86A-06CC1684705E@microsoft.com...
    >I would like to know how to generate a column which can fill the cells in
    >the
    > order: FACT(1) ; FACT(2); FACT(3)... etcetera. Apparently it will not work
    > by
    > dragging the cells down.
    >
    > Also, I need to generate a cell which can perform the function of:
    > f(x) = e^x = 1 + (1/1!)*x + (1/2!)*x^2 + (1/3!)*x^3... which by means is
    > the
    > exp fn of the maclaurin series.
    >
    > any help or suggestions is very much appreciated.




  5. #5
    Aladin Akyurek
    Guest

    Re: recursive sums

    JMB wrote:
    > Won't that throw an error if the first row or column is deleted (assuming the
    > table does not start in cell A1)?
    >
    >
    > "Bob Phillips" wrote:
    >
    >
    >>=FACT(ROW(A1))


    ROW(A1) is not an idiom one would choose if one is concerned with
    robustness.

    =FACT(ROWS($1:1))

    entered in A1, would be robust against inserting rows/columns before the
    formula cell and against deleting the first formula row.

  6. #6
    Hans Knudsen
    Guest

    Re: recursive sums

    Just to add one more:
    Put n (= number of terms of the sequence f(x)) in A1 and x in A2 then enter the following array formula:
    =1+SUM((FACT((ROW(INDIRECT("1"&":"&A1))))^-1)*A2^ROW(INDIRECT("1"&":"&A1)))
    (Note that n > 21 will not change the result).

    Hans Knudsen


    "Joe" <Joe@discussions.microsoft.com> skrev i en meddelelse news:2253F0CA-54C6-45BC-B86A-06CC1684705E@microsoft.com...
    >I would like to know how to generate a column which can fill the cells in the
    > order: FACT(1) ; FACT(2); FACT(3)... etcetera. Apparently it will not work by
    > dragging the cells down.
    >
    > Also, I need to generate a cell which can perform the function of:
    > f(x) = e^x = 1 + (1/1!)*x + (1/2!)*x^2 + (1/3!)*x^3... which by means is the
    > exp fn of the maclaurin series.
    >
    > any help or suggestions is very much appreciated.




  7. #7
    Hans Knudsen
    Guest

    Re: recursive sums

    Just to add one more:
    Put n (= number of terms of the sequence f(x)) in A1 and x in A2 then enter the following array formula:
    =1+SUM((FACT((ROW(INDIRECT("1"&":"&A1))))^-1)*A2^ROW(INDIRECT("1"&":"&A1)))
    (Note that n > 21 will not change the result).

    Hans Knudsen


    "Joe" <Joe@discussions.microsoft.com> skrev i en meddelelse news:2253F0CA-54C6-45BC-B86A-06CC1684705E@microsoft.com...
    >I would like to know how to generate a column which can fill the cells in the
    > order: FACT(1) ; FACT(2); FACT(3)... etcetera. Apparently it will not work by
    > dragging the cells down.
    >
    > Also, I need to generate a cell which can perform the function of:
    > f(x) = e^x = 1 + (1/1!)*x + (1/2!)*x^2 + (1/3!)*x^3... which by means is the
    > exp fn of the maclaurin series.
    >
    > any help or suggestions is very much appreciated.




  8. #8
    Aladin Akyurek
    Guest

    Re: recursive sums

    JMB wrote:
    > Won't that throw an error if the first row or column is deleted (assuming the
    > table does not start in cell A1)?
    >
    >
    > "Bob Phillips" wrote:
    >
    >
    >>=FACT(ROW(A1))


    ROW(A1) is not an idiom one would choose if one is concerned with
    robustness.

    =FACT(ROWS($1:1))

    entered in A1, would be robust against inserting rows/columns before the
    formula cell and against deleting the first formula row.

  9. #9
    Dana DeLouis
    Guest

    Re: recursive sums

    Hi. Just to add....
    In A1, you could enter this for the first part of the equation.
    =1/FACT(ROW()-1)

    and drag down to say A10. (ie Start w/ Fact(0) )

    Then your Series can be calculated as...

    =SERIESSUM(1,0,1,A1:A10)

    Returns a number close to =EXP(1)
    HTH :>)
    --
    Dana DeLouis
    Win XP & Office 2003


    "Joe" <Joe@discussions.microsoft.com> wrote in message
    news:2253F0CA-54C6-45BC-B86A-06CC1684705E@microsoft.com...
    >I would like to know how to generate a column which can fill the cells in
    >the
    > order: FACT(1) ; FACT(2); FACT(3)... etcetera. Apparently it will not work
    > by
    > dragging the cells down.
    >
    > Also, I need to generate a cell which can perform the function of:
    > f(x) = e^x = 1 + (1/1!)*x + (1/2!)*x^2 + (1/3!)*x^3... which by means is
    > the
    > exp fn of the maclaurin series.
    >
    > any help or suggestions is very much appreciated.




  10. #10
    JMB
    Guest

    Re: recursive sums

    Won't that throw an error if the first row or column is deleted (assuming the
    table does not start in cell A1)?


    "Bob Phillips" wrote:

    > =FACT(ROW(A1))
    >
    > --
    >
    > HTH
    >
    > RP
    > (remove nothere from the email address if mailing direct)
    >
    >
    > "JMB" <JMB@discussions.microsoft.com> wrote in message
    > news:A6B79BD9-3333-4FFF-91E9-1263010B8C6C@microsoft.com...
    > > For you first question
    > >
    > > If you are starting in cell A1:
    > >
    > > =FACT(ROWS(A$1:A1))
    > >
    > > and copy down.
    > >
    > > "Joe" wrote:
    > >
    > > > I would like to know how to generate a column which can fill the cells

    > in the
    > > > order: FACT(1) ; FACT(2); FACT(3)... etcetera. Apparently it will not

    > work by
    > > > dragging the cells down.
    > > >
    > > > Also, I need to generate a cell which can perform the function of:
    > > > f(x) = e^x = 1 + (1/1!)*x + (1/2!)*x^2 + (1/3!)*x^3... which by means is

    > the
    > > > exp fn of the maclaurin series.
    > > >
    > > > any help or suggestions is very much appreciated.

    >
    >
    >


  11. #11
    Bob Phillips
    Guest

    Re: recursive sums

    =FACT(ROW(A1))

    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "JMB" <JMB@discussions.microsoft.com> wrote in message
    news:A6B79BD9-3333-4FFF-91E9-1263010B8C6C@microsoft.com...
    > For you first question
    >
    > If you are starting in cell A1:
    >
    > =FACT(ROWS(A$1:A1))
    >
    > and copy down.
    >
    > "Joe" wrote:
    >
    > > I would like to know how to generate a column which can fill the cells

    in the
    > > order: FACT(1) ; FACT(2); FACT(3)... etcetera. Apparently it will not

    work by
    > > dragging the cells down.
    > >
    > > Also, I need to generate a cell which can perform the function of:
    > > f(x) = e^x = 1 + (1/1!)*x + (1/2!)*x^2 + (1/3!)*x^3... which by means is

    the
    > > exp fn of the maclaurin series.
    > >
    > > any help or suggestions is very much appreciated.




  12. #12
    JMB
    Guest

    RE: recursive sums

    For you first question

    If you are starting in cell A1:

    =FACT(ROWS(A$1:A1))

    and copy down.

    "Joe" wrote:

    > I would like to know how to generate a column which can fill the cells in the
    > order: FACT(1) ; FACT(2); FACT(3)... etcetera. Apparently it will not work by
    > dragging the cells down.
    >
    > Also, I need to generate a cell which can perform the function of:
    > f(x) = e^x = 1 + (1/1!)*x + (1/2!)*x^2 + (1/3!)*x^3... which by means is the
    > exp fn of the maclaurin series.
    >
    > any help or suggestions is very much appreciated.


  13. #13
    Hans Knudsen
    Guest

    Re: recursive sums

    Just to add one more:
    Put n (= number of terms of the sequence f(x)) in A1 and x in A2 then enter the following array formula:
    =1+SUM((FACT((ROW(INDIRECT("1"&":"&A1))))^-1)*A2^ROW(INDIRECT("1"&":"&A1)))
    (Note that n > 21 will not change the result).

    Hans Knudsen


    "Joe" <Joe@discussions.microsoft.com> skrev i en meddelelse news:2253F0CA-54C6-45BC-B86A-06CC1684705E@microsoft.com...
    >I would like to know how to generate a column which can fill the cells in the
    > order: FACT(1) ; FACT(2); FACT(3)... etcetera. Apparently it will not work by
    > dragging the cells down.
    >
    > Also, I need to generate a cell which can perform the function of:
    > f(x) = e^x = 1 + (1/1!)*x + (1/2!)*x^2 + (1/3!)*x^3... which by means is the
    > exp fn of the maclaurin series.
    >
    > any help or suggestions is very much appreciated.




  14. #14
    Aladin Akyurek
    Guest

    Re: recursive sums

    JMB wrote:
    > Won't that throw an error if the first row or column is deleted (assuming the
    > table does not start in cell A1)?
    >
    >
    > "Bob Phillips" wrote:
    >
    >
    >>=FACT(ROW(A1))


    ROW(A1) is not an idiom one would choose if one is concerned with
    robustness.

    =FACT(ROWS($1:1))

    entered in A1, would be robust against inserting rows/columns before the
    formula cell and against deleting the first formula row.

  15. #15
    Dana DeLouis
    Guest

    Re: recursive sums

    Hi. Just to add....
    In A1, you could enter this for the first part of the equation.
    =1/FACT(ROW()-1)

    and drag down to say A10. (ie Start w/ Fact(0) )

    Then your Series can be calculated as...

    =SERIESSUM(1,0,1,A1:A10)

    Returns a number close to =EXP(1)
    HTH :>)
    --
    Dana DeLouis
    Win XP & Office 2003


    "Joe" <Joe@discussions.microsoft.com> wrote in message
    news:2253F0CA-54C6-45BC-B86A-06CC1684705E@microsoft.com...
    >I would like to know how to generate a column which can fill the cells in
    >the
    > order: FACT(1) ; FACT(2); FACT(3)... etcetera. Apparently it will not work
    > by
    > dragging the cells down.
    >
    > Also, I need to generate a cell which can perform the function of:
    > f(x) = e^x = 1 + (1/1!)*x + (1/2!)*x^2 + (1/3!)*x^3... which by means is
    > the
    > exp fn of the maclaurin series.
    >
    > any help or suggestions is very much appreciated.




  16. #16
    JMB
    Guest

    Re: recursive sums

    Won't that throw an error if the first row or column is deleted (assuming the
    table does not start in cell A1)?


    "Bob Phillips" wrote:

    > =FACT(ROW(A1))
    >
    > --
    >
    > HTH
    >
    > RP
    > (remove nothere from the email address if mailing direct)
    >
    >
    > "JMB" <JMB@discussions.microsoft.com> wrote in message
    > news:A6B79BD9-3333-4FFF-91E9-1263010B8C6C@microsoft.com...
    > > For you first question
    > >
    > > If you are starting in cell A1:
    > >
    > > =FACT(ROWS(A$1:A1))
    > >
    > > and copy down.
    > >
    > > "Joe" wrote:
    > >
    > > > I would like to know how to generate a column which can fill the cells

    > in the
    > > > order: FACT(1) ; FACT(2); FACT(3)... etcetera. Apparently it will not

    > work by
    > > > dragging the cells down.
    > > >
    > > > Also, I need to generate a cell which can perform the function of:
    > > > f(x) = e^x = 1 + (1/1!)*x + (1/2!)*x^2 + (1/3!)*x^3... which by means is

    > the
    > > > exp fn of the maclaurin series.
    > > >
    > > > any help or suggestions is very much appreciated.

    >
    >
    >


  17. #17
    Bob Phillips
    Guest

    Re: recursive sums

    =FACT(ROW(A1))

    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "JMB" <JMB@discussions.microsoft.com> wrote in message
    news:A6B79BD9-3333-4FFF-91E9-1263010B8C6C@microsoft.com...
    > For you first question
    >
    > If you are starting in cell A1:
    >
    > =FACT(ROWS(A$1:A1))
    >
    > and copy down.
    >
    > "Joe" wrote:
    >
    > > I would like to know how to generate a column which can fill the cells

    in the
    > > order: FACT(1) ; FACT(2); FACT(3)... etcetera. Apparently it will not

    work by
    > > dragging the cells down.
    > >
    > > Also, I need to generate a cell which can perform the function of:
    > > f(x) = e^x = 1 + (1/1!)*x + (1/2!)*x^2 + (1/3!)*x^3... which by means is

    the
    > > exp fn of the maclaurin series.
    > >
    > > any help or suggestions is very much appreciated.




  18. #18
    JMB
    Guest

    RE: recursive sums

    For you first question

    If you are starting in cell A1:

    =FACT(ROWS(A$1:A1))

    and copy down.

    "Joe" wrote:

    > I would like to know how to generate a column which can fill the cells in the
    > order: FACT(1) ; FACT(2); FACT(3)... etcetera. Apparently it will not work by
    > dragging the cells down.
    >
    > Also, I need to generate a cell which can perform the function of:
    > f(x) = e^x = 1 + (1/1!)*x + (1/2!)*x^2 + (1/3!)*x^3... which by means is the
    > exp fn of the maclaurin series.
    >
    > any help or suggestions is very much appreciated.


  19. #19
    Joe
    Guest

    recursive sums

    I would like to know how to generate a column which can fill the cells in the
    order: FACT(1) ; FACT(2); FACT(3)... etcetera. Apparently it will not work by
    dragging the cells down.

    Also, I need to generate a cell which can perform the function of:
    f(x) = e^x = 1 + (1/1!)*x + (1/2!)*x^2 + (1/3!)*x^3... which by means is the
    exp fn of the maclaurin series.

    any help or suggestions is very much appreciated.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1