Message Boards Message Boards

0
|
2177 Views
|
1 Reply
|
1 Total Likes
View groups...
Share
Share this post:

Interpret a case discrimination in a differential equation solution?

Posted 6 years ago

Hey Guys,

I have a question. I'm trying to solve a differential equation. I have a solution, but I can't work with it. Mathematica makes a case distinction, but I do not know how to interpret this? Anybody have an idea? What does the Mod mean? Thank you for your help.

My code

POSTED BY: Roy Glavanitz

The solution that you found is wrong, as it is discontinuous. We get a continuous solution if we give a bounded interval as domain forĀ t:

sol = With[{a = 1, b = 1, x0 = 1, v0 = 0}, 
   DSolveValue[{a*x''[t] + b*x'[t] == SquareWave[t], x[0] == x0, 
     x'[0] == v0},
    x, {t, 0, 5}]];
PiecewiseExpand[sol[t]]
Plot[sol[t], {t, 0, 5}]
POSTED BY: Gianluca Gorni
Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard

Group Abstract Group Abstract