[Search for users] [Overall Top Noters] [List of all Conferences] [Download this site]

Conference rusure::math

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.RTitleUserPersonal
Name
DateLines
1824.1Break into casesWIBBIN::NOYCEDEC 21064-200DX5 : 130 SPECint @ $36KThu Dec 09 1993 09:594
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.2Non-analytic.CADSYS::COOPERTopher CooperThu Dec 09 1993 10:168
    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.3STAR::ABBASIonly 5 days left..Fri Dec 10 1993 15:597
    .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