[Search for users]
[Overall Top Noters]
[List of all Conferences]
[Download this site]
Title: | Mathematics at DEC |
|
Moderator: | RUSURE::EDP |
|
Created: | Mon Feb 03 1986 |
Last Modified: | Fri Jun 06 1997 |
Last Successful Update: | Fri Jun 06 1997 |
Number of topics: | 2083 |
Total number of notes: | 14613 |
1824.0. "int(exp(abs(t)),t=-infinity..infinity) in maple?" by STAR::ABBASI (only 5 days left..) Thu Dec 09 1993 00:41
hi,
i have this expression with absolute values all over it,
but maple is giving me hard time with abs values, to explain
as an example:
2 |t|
if i want to integreate e from say -oo to oo
i type
int(exp(2* abs(t)),t=-infinity..infinity);
maple can't do it.
i use signum, but still it wont do it:
int(exp(2* signum(t) * t ,t=-infinity..infinity);
any one knows how to do this integral in maple? once i know
how i can apply the method to other things with abs in them.
thanks,
\nasser
T.R | Title | User | Personal Name | Date | Lines |
---|
1824.1 | Break into cases | WIBBIN::NOYCE | DEC 21064-200DX5 : 130 SPECint @ $36K | Thu Dec 09 1993 09:59 | 4 |
| How about
int(exp(2* (-t)),t=-infinity..0) + int(exp(2* t),t=0..infinity);
(Are you sure you didn't mean -abs(t)?)
|
1824.2 | Non-analytic. | CADSYS::COOPER | Topher Cooper | Thu Dec 09 1993 10:16 | 8 |
| There is a reason that functions which contain abs are called
"non-analytic". Evaluate seperately the formula for regions where the
sign of the expression in the abs is positive, and where it is negative
with an appropriate "-" thrown in. Sum the results of those regions.
(in this case, the result is infinite)
Topher
|
1824.3 | | STAR::ABBASI | only 5 days left.. | Fri Dec 10 1993 15:59 | 7 |
| .1, .2
thanks, i know i can break it out "manully", but sometimes(?) iam lazy and
was hoping maple can do it for me as is so i will type in less ;)
\nasser
|