zulsnipe

5 Reputation

One Badge

6 years, 198 days

MaplePrimes Activity


These are questions asked by zulsnipe

sys_ode := diff(I1(x), x) = -10*I1(x)+10*I2(x)+30, diff(I2(x), x) = -4*I1(x)+3*I2(x)+12;
print(`output redirected...`); # input placeholder
             d                                     
            --- I1(x) = -10 I1(x) + 10 I2(x) + 30,        >>> there are no sys_ode := before d\dx but when my friend do the same 
             dx                                                                  at another laptop it show.. and also i cant plot the graph.

               d                                 
              --- I2(x) = -4 I1(x) + 3 I2(x) + 12
               dx                                
dsolve([sys_ode]);
print(`output redirected...`); # input placeholder
          /                                           
         { I1(x) = exp(-5 x) _C2 + exp(-2 x) _C1 + 3, 
          \                                           

                   1                 4              \ 
           I2(x) = - exp(-5 x) _C2 + - exp(-2 x) _C1 }
                   2                 5              / 
ics := I1(0) = 0, I2(0) = 0;
print(`output redirected...`); # input placeholder
                      I1(0) = 0, I2(0) = 0
dsolve([sys_ode, ics]);
print(`output redirected...`); # input placeholder
           {I1(x) = -8 exp(-5 x) + 5 exp(-2 x) + 3, 

             I2(x) = -4 exp(-5 x) + 4 exp(-2 x)}
 

Page 1 of 1