<html>
<head>
<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 12pt;
font-family:Calibri
}
--></style></head>
<body class='hmmessage'><div dir='ltr'>dont forget to do an "assume(z>0.5)" before all so that the sum is not infinite<br><br><br><div><hr id="stopSpelling">From: pablo_f_7@hotmail.com<br>To: users@lists.scilab.org<br>Date: Sun, 16 Aug 2015 18:01:42 -0300<br>Subject: Re: [Scilab-users] Symbolic computation in Scilab<br><br>
<style><!--
.ExternalClass .ecxhmmessage P {
padding:0px;
}
.ExternalClass body.ecxhmmessage {
font-size:12pt;
font-family:Calibri;
}
--></style>
<div dir="ltr">Hi:<br>i think i finally solved your problem<br> use this script<br><br>Syms n z ;<br>x1 =(0.33) ^( n )<br>X1 = %sym_sum (7* x1 *( z ^( - n ) ) ,n ,0 , %inf )<br>X1=ev(X1,'simpsum=true')<br>x2 =(0.5) ^( n )<br>X2 = %sym_sum (6* x2 *( z ^( - n ) ) ,n ,0 , %inf )<br>X2=ev(X2,'simpsum=true')<br>X = X1 - X2<br><br>i just added the ev instruction after calculating X1 and X2 to simplify the sum...<br><br>the result is<br><br> X =<br> <br> 7.0 6.0<br> --------- - -------<br> 33 1<br> 1 - ----- 1 - ---<br> 100 z 2 z<br><br>that is correct!<br><br><div>> Date: Sun, 16 Aug 2015 04:18:29 -0700<br>> From: doole93@gmail.com<br>> To: users@lists.scilab.org<br>> Subject: Re: [Scilab-users] Symbolic computation in Scilab<br>> <br>> I forgot, the scimax toolbox doesn't ask me to input any convergence<br>> conditions<br>> <br>> <br>> <br>> --<br>> View this message in context: http://mailinglists.scilab.org/Symbolic-computation-in-Scilab-tp4032673p4032693.html<br>> Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com.<br>> _______________________________________________<br>> users mailing list<br>> users@lists.scilab.org<br>> http://lists.scilab.org/mailman/listinfo/users<br></div> </div>
<br>_______________________________________________
users mailing list
users@lists.scilab.org
http://lists.scilab.org/mailman/listinfo/users</div> </div></body>
</html>