#1   Report Post  
Joe
 
Posts: n/a
Default 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.
  #2   Report Post  
JMB
 
Posts: n/a
Default

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   Report Post  
Bob Phillips
 
Posts: n/a
Default

=FACT(ROW(A1))

--

HTH

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


"JMB" wrote in message
...
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   Report Post  
JMB
 
Posts: n/a
Default

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" wrote in message
...
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.




  #5   Report Post  
Dana DeLouis
 
Posts: n/a
Default

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" wrote in message
...
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.





  #6   Report Post  
Aladin Akyurek
 
Posts: n/a
Default

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.
  #7   Report Post  
Hans Knudsen
 
Posts: n/a
Default

Just to add one mo
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" skrev i en meddelelse ...
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
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Excell will not add multiple sums together, what do I have turned. Kenny's Key West Excel Discussion (Misc queries) 1 January 30th 05 01:04 AM
How come some worksheets automaticly change sums and others don't. T.D. Excel Discussion (Misc queries) 2 January 29th 05 08:41 PM
Replace Letter "E" with Letter "C" for 200 Different Sums in a Col Katherine Excel Worksheet Functions 1 January 21st 05 02:53 AM
LOOKUP FUNCTION WITH SUMS ABILITY Jamesy Excel Discussion (Misc queries) 1 January 10th 05 03:39 PM
LOOKUP FUNCTION WITH SUMS VALUES Jamesy Excel Discussion (Misc queries) 3 January 10th 05 03:03 PM


All times are GMT +1. The time now is 02:38 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"