How to make MuPAD know a limit is zero?
    5 views (last 30 days)
  
       Show older comments
    
When I type in the following code, MuPAD returns a complicated answer that includes the limit as x approaches negative infinity. How do I get it to realize that the quantity it returns labelled sigma3 is zero. I thought that by defining Ws and rho as real and positive it would realize this.
Thanks
    reset();    
    assume(U, Type::Real and Type::Positive);    
    assume(Wc, Type::Real and Type::Positive);
    assume(Ws, Type::Real and Type::Positive);
    assume(`ρ`, Type::Real and Type::Positive);
    A:=cos(2*U)+((Wc)/U)*sin(2*U);
    B:=exp((Ws/`ρ`)*(x+(2*`ρ`)));
    C:=cos(Q*((x/`ρ`)+2));
    S:=sin(Q*((x/`ρ`)+2));
    F:=U*sin(2*U)-Wc*cos(2*U);
    G:=A*B*(A*C+((1/Q)*F*S));
    R:=int(G, x=-infinity..(-2*`ρ`),IgnoreAnalyticConstraints);
0 Comments
Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!