Finding Particular Solution of a Second Order Differential equation with dsolve
    조회 수: 17 (최근 30일)
  
       이전 댓글 표시
    
The homogenous equation: 28^(e^(−2x)) − 18(e(−3x))
I found the homogenous solution to the equation, however I am not sure how to find the particular solution when the differential equation is equal to 8. I tried using the dsolve function, however it doesn't give me the correct solution. Apparently the particular solution is supposed to be 4/3.
   y2 = dsolve('D2v + 5*Dv + 6*v = 8')
댓글 수: 0
채택된 답변
  Birdman
      
      
 2018년 3월 19일
        Well, it should give you the correct solution. In my computer it worked:
>>syms v(x)
  eq=diff(v,2)+5*diff(v)+6*v==8;
  v(x)=dsolve(eq)
ans =
C1*exp(-2*x) + C2*exp(-3*x) + 4/3
댓글 수: 2
  Jaryd Kynaston-Blake
 2022년 7월 8일
				
      편집: Jaryd Kynaston-Blake
 2022년 7월 8일
  
			now how can get values for C1 & C2 using:
    V(0) = V0    % just an arbitrary variable
&  t(0) = 0
Sincerely.
  Torsten
      
      
 2022년 7월 8일
				syms v(x) v0
eq = diff(v,2)+5*diff(v)+6*v==8;
Dv = diff(v,x);
cond = [v(0)==v0, Dv(0)==0];
vSol(x) = dsolve(eq,cond)
추가 답변 (0개)
참고 항목
카테고리
				Help Center 및 File Exchange에서 Symbolic Math Toolbox에 대해 자세히 알아보기
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!




