~ubuntu-branches/ubuntu/karmic/maxima/karmic

« back to all changes in this revision

Viewing changes to doc/info/Simplification.texi

  • Committer: Bazaar Package Importer
  • Author(s): Barry deFreese
  • Date: 2006-07-06 17:04:52 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20060706170452-j9ypoqc1kjfnz221
Tags: 5.9.3-1ubuntu1
* Re-sync with Debian
* Comment out backward-delete-char-untabify in maxima.el (Closes Malone #5273)
* debian/control: build-dep automake -> automake1.9 (Closes BTS: #374663)

Show diffs side-by-side

added added

removed removed

Lines of Context:
470
470
 
471
471
@end defvr
472
472
 
473
 
@c NEEDS EXAMPLES
474
 
@defvr {Option variable} prodhack
475
 
Default value: @code{false}
476
 
 
477
 
When @code{prodhack} is @code{true}, the identity 
478
 
@code{product (f(i), i, a, b) = 1/product (f(i), i, b+1, a-1)} is applied 
479
 
if @code{a} is greater than @code{b}.
480
 
For example, @code{product (f(i), i, 3, 1)} yields @code{1/f(2)}.
481
 
 
482
 
@end defvr
483
 
 
484
473
@deffn {Function} radcan (@var{expr})
485
474
Simplifies @var{expr}, which can contain logs, exponentials, and
486
475
radicals, by converting it into a form which is canonical over a large
632
621
 
633
622
@end defvr
634
623
 
635
 
 
636
 
@defvr {Option variable} sumhack
637
 
Default value: @code{false}
638
 
 
639
 
When @code{sumhack} is @code{true}, 
640
 
the identity @code{sum (f(i), i, a, b) = - sum (f(i), i, b+1, a-1)}
641
 
@c "IS APPLIED" -- UNDER WHAT CIRCUMSTANCES EXACTLY ?? QUOTING/SIMPLIFICATION STRANGENESS OBSERVED HERE
642
 
is applied
643
 
if @code{a} is greater than @code{b}.
644
 
For example, @code{(sumhack: true, sum (f(i), i, 3, 1))} yields @code{-f(2)}.
645
 
 
646
 
@end defvr
647
 
 
648
 
 
649
624
@defvr {Option variable} sumsplitfact
650
625
Default value: @code{true}
651
626