Writing Co-efficients Elegantly w/ Real Numbers

  • Thread starter Thread starter SeReNiTy
  • Start date Start date
  • Tags Tags
    Notation
SeReNiTy
Messages
170
Reaction score
0
Hi guys, just wondering if you can give me some advice on how to write certain co-efficients with in a compact elegant way.

The co-efficients are given by the following rule:

a0=1
a1=z
a2=z(z-1)
a3=z(z-1)(z-2)
.
.
.
an=z(z-1)(z-2)...(z-(n-1))

where a = any real number

I was thinking of using the following definition, an = z!/(z-n)! which seems to give me the correct results but I am worried about whether or not the ! can be defined on real numbers. Like is there a problem with this definition?
 
Physics news on Phys.org
The ! can't really be defined on reals analogously to on N, but the expression "z!/(z-n)!" as a whole makes a lot of sense. Analogously to N, it means multiply z by z-1 by z-2, etc up to z-n+1.
 
How about (for n>1)

a_n = \prod_{i=0}^{n-1} (z-i)

Written differently, you can define it recursively by

a_0 = 1

and

a_n = a_{n-1} \cdot (z - (n-1)), \ \text{for } \, n \geq 1
 
Last edited:
morphism said:
How about (for n>1)

a_n = \prod_{i=0}^{n-1} (z-i)

Written differently, you can define it recursively by

a_0 = 1

and

a_n = a_{n-1} \cdot (z - (n-1)), \ \text{for } \, n \geq 1


What's that thing called anyway? I know that it is to multiplication what the sigma is to addition, but is it just a capital pi or what?
 
Pythagorean said:
What's that thing called anyway? I know that it is to multiplication what the sigma is to addition, but is it just a capital pi or what?

I am pretty sure it is just a capital pi.
 
I learned it as "product". But that was fifty years ago...
 
Lol maybe you misunderstood, yes they mean it as product as well jim, but they're just saying, the actual letter used to show that is a capital pi from the greek alphabet.

And just incase everyones forgotten, these can be very easily written with binomial notation?

EDIT: Shoot my last statement, though it could still help a tiny bit.

{r \choose k} &{}= {1 \over k!}\prod_{n=0}^{k-1}(r-n)=\frac{r(r-1)(r-2)\cdots(r-(k-1))}{k!}
 
Last edited:
Try \frac{\Gamma(z+1)}{\Gamma(z-n+1)}
The gamma function is the unique extension of the factorial function to the real numbers. \Gamma(z+1) = z!

By the way, if you are only doing this with integers, the accepted notation is (z)_n It is known as the falling factorial, or Pochhammer symbol
 
Last edited:
LukeD said:
The gamma function is the unique extension of the factorial function to the real numbers.
It's not unique. For example,

f(z) = \Gamma(z + 1) + \sin (\pi z)

also agrees with the factorial function on the natural numbers. And so does

f(z) = \begin{cases}<br /> 0 &amp; z &lt; 0\\<br /> \lfloor z \rfloor ! &amp; z \geq 0<br />

and

f(z) = \begin{cases}<br /> z! &amp; z \in \mathbb{N} \\<br /> -14 &amp; z \notin \mathbb{N}<br />
 
Last edited:
  • #10
Hurkyl said:
It's not unique. For example,

f(z) = \Gamma(z + 1) + \sin (\pi z)

also agrees with the factorial function on the natural numbers. And so does

f(z) = \begin{cases}<br /> 0 &amp; z &lt; 0\\<br /> \lfloor z \rfloor ! &amp; z \geq 0<br />

and

f(z) = \begin{cases}<br /> z! &amp; z \in \mathbb{N} \\<br /> -14 &amp; z \notin \mathbb{N}<br />
What I meant is that it's unique in that it extends all of the properties of the factorial function to the real (and complex) numbers so that for all complex numbers (except 0) \Gamma(z+1) = z*\Gamma(z) and so that it is complex differentiable at all points except 0,-1,-2,...

However, I haven't studied the Gamma function, so I don't know much else about it.
 
Last edited:
Back
Top