Message Boards Message Boards

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

Help me for solve the Eq Error in IBC

Posted 5 years ago
DSolve[{E*t''''[x] + D*t''[x] - v*t'[x] == k*t[x], t'[0] = 0, 
  t'[L] = 0, t''[0] = 0, t''[L] = 0
  }, t[x], x]
Attachments:
POSTED BY: Erfan Permanoon

Mathematica is case sensitive and built-in symbols are always capitalized. Don't use capital D for your own symbol by the way. With corrected syntax:

 DSolve[{e*t''''[x] + d*t''[x] - v*t'[x] == k*t[x], t'[0] == 0, t'[L] == 0, t''[0] == 0, t''[L] == 0}, t[x], x]

 (* {{t[x] -> 0}}  *)

Gives only a trivial solution.

Regards M.I.

POSTED BY: Mariusz Iwaniuk
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