Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision Both sides next revision
infinite_product_of_complex_numbers [2015/04/15 17:09]
nikolaj
infinite_product_of_complex_numbers [2015/04/16 13:21]
nikolaj
Line 6: Line 6:
 ----- -----
 === Discussion === === Discussion ===
->todo: Interestingly,​ I think I see the nLab doesn'​t want to allow e.g. $\prod_{n=1}^\infty (17-n)$ to be zero. +>todo: Interestingly,​ I think I see the nLab doesn'​t want to allow e.g. $\prod_{n=1}^\infty (17-n)$ to be zero. (Reference below)
- +
-http://​ncatlab.org/​nlab/​show/​infinite+product+
  
 I recon infinite products may arise when x is written as $111\cdots11x$ and 1 is represented as something. ​ I recon infinite products may arise when x is written as $111\cdots11x$ and 1 is represented as something. ​
Line 52: Line 50:
  
 >​I'​ve seen this pop up in the derivation of the basic path integral. Where else does it pop up? Why, if $x_n$ doesn'​t depend on $N$, does this turn to an $\exp(\int something)$?​ I think they join some limits to a single one. I think that relates to what Ron said about quantization procedures. >​I'​ve seen this pop up in the derivation of the basic path integral. Where else does it pop up? Why, if $x_n$ doesn'​t depend on $N$, does this turn to an $\exp(\int something)$?​ I think they join some limits to a single one. I think that relates to what Ron said about quantization procedures.
 +
 +<​code>​
 +h = (b - a)/m;
 +f[X_] = c X^2;
 +
 +p = Product[
 +   1 + f[i] h
 +   , {i, a, b, h}] // simple
 +
 +a = 0;
 +b = 7;
 +c = 3;
 +Limit[p, m -> \[Infinity]]
 +
 +Exp[Integrate[c X^2, {X, 0, 7}]]
 +</​code>​
  
 == Jacobi triple product == == Jacobi triple product ==
Line 61: Line 75:
  
 $\prod_{n=0}^{\infty}\left(1 + x^{2^n}\right) = \frac{1}{1-x}$ $\prod_{n=0}^{\infty}\left(1 + x^{2^n}\right) = \frac{1}{1-x}$
 +
 +=== Reference ===
 +nLab: [[http://​ncatlab.org/​nlab/​show/​infinite+product|Infinite product]]
 +
 +Wikipedia: [[http://​en.wikipedia.org/​wiki/​Product_integral|Product integral]]
  
 ----- -----
 === Subset of === === Subset of ===
 [[Infinite series]] [[Infinite series]]
Link to graph
Log In
Improvements of the human condition