Product(S), rendered as ∏S, gives the product of the elements of the set S. The product is required to be absolutely convergent. The empty product is 1.
Product(f(n), For(n, a, b)), rendered as ∏n=abf(n), gives the product of f(n)
for integers n
from a
to b, where a
and b
should be integers or −∞
or ∞. If a<b, the product is empty. The product ∏n=0∞f(n)
is interpreted as limN→∞∏n=0Nf(n)
and can be conditionally convergent.
Product(f(n), For(n, a, b), P(n)), rendered as ∏P(n)n=abf(n), is as above but only terms satisfying the predicate P(n)
are included.
Product(f(x), ForElement(x, S)), rendered as ∏x∈Sf(x), gives the product of f(x)
for all x
in the set S. The product is required to be absolutely convergent.
Product(f(x), ForElement(x, S), P(x)), rendered as ∏P(x)x∈Sf(x), gives the product of f(x)
for all x
in the set S
and satisfying the predicate P(x). The product is required to be absolutely convergent.
Product(f(x), For(x), P(x)), rendered as ∏P(x)f(x), gives the product of f(x)
for all x
satisfying the predicate P(x). The predicate P(x)
should define the domain of x
unambiguously; that is, it must include a statement such as x∈S
where S
is a known set. The product is required to be absolutely convergent.
The empty product is 1. The product can range over an uncountable number of factors, as long as only countably many factors are nonzero.
The special expression For(x), For(x, a, b) or ForElement(x) declares x as a locally bound variable within the scope of the arguments to this operator. Similarly For(Tuple(x, y)), ForElement(Tuple(x, y), S) etc. defines multiple locally bound variables.
Definitions:
Fungrim symbol | Notation | Short description |
---|---|---|
Product | ∏nf(n) | Product |
Infinity | ∞ | Positive infinity |
SequenceLimit | limn→af(n) | Limiting value of sequence |
Source code for this entry:
Entry(ID("1e2755"), SymbolDefinition(Product, Product(f(n), For(n)), "Product"), Description(SourceForm(Product(S)), ", rendered as ", Product(S), ", gives the product of the elements of the set", S, ". The product is required to be absolutely convergent. The empty product is 1."), Description(SourceForm(Product(f(n), For(n, a, b))), ", rendered as ", Product(f(n), For(n, a, b)), ", gives the product of", f(n), "for integers", n, "from", a, "to", b, ", where", a, "and", b, "should be integers or", Neg(Infinity), "or", Infinity, ". ", "If", Less(a, b), ", the product is empty. The product", Product(f(n), For(n, 0, Infinity)), "is interpreted as", SequenceLimit(Product(f(n), For(n, 0, N)), Var(N), Infinity), "and can be conditionally convergent."), Description(SourceForm(Product(f(n), For(n, a, b), P(n))), ", rendered as ", Product(f(n), For(n, a, b), P(n)), ", is as above but", "only terms satisfying the predicate", P(n), "are included."), Description(SourceForm(Product(f(x), ForElement(x, S))), ", rendered as ", Product(f(x), ForElement(x, S)), ", gives the product of", f(x), "for all", x, "in the set", S, ". The product is required to be absolutely convergent."), Description(SourceForm(Product(f(x), ForElement(x, S), P(x))), ", rendered as ", Product(f(x), ForElement(x, S), P(x)), ", gives the product of", f(x), "for all", x, "in the set", S, "and satisfying the predicate", P(x), ". The product is required to be absolutely convergent."), Description(SourceForm(Product(f(x), For(x), P(x))), ", rendered as ", Product(f(x), For(x), P(x)), ", gives the product of", f(x), "for all", x, "satisfying the predicate", P(x), ". ", "The predicate", P(x), "should define the domain of", x, "unambiguously; that is, it must include a statement such as", Element(x, S), "where", S, "is a known set.", "The product is required to be absolutely convergent."), Description("The empty product is", 1, ". The product can range over an uncountable number of factors, as long as only countably many factors are nonzero."), Description("The special expression", SourceForm(For(x)), ", ", SourceForm(For(x, a, b)), " or", SourceForm(ForElement(x)), "declares", SourceForm(x), "as a locally bound variable within the scope of the arguments to this operator. ", "Similarly", SourceForm(For(Tuple(x, y))), ", ", SourceForm(ForElement(Tuple(x, y), S)), "etc. defines multiple locally bound variables."))