Internal
problem
ID
[15755]
Book
:
INTRODUCTORY
DIFFERENTIAL
EQUATIONS.
Martha
L.
Abell,
James
P.
Braselton.
Fourth
edition
2014.
ElScAe.
2014
Section
:
Chapter
1.
Introduction
to
Differential
Equations.
Exercises
1.1,
page
10
Problem
number
:
53
Date
solved
:
Monday, March 31, 2025 at 01:47:12 PM
CAS
classification
:
[[_Emden, _Fowler]]
With initial conditions
ode:=t^2*diff(diff(y(t),t),t)-12*t*diff(y(t),t)+42*y(t) = 0; ic:=y(1) = 0, D(y)(1) = -1; dsolve([ode,ic],y(t), singsol=all);
ode=t^2*D[y[t],{t,2}]-12*t*D[y[t],t]+42*y[t]==0; ic={y[1]==0,Derivative[1][y][1]==-1}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(t**2*Derivative(y(t), (t, 2)) - 12*t*Derivative(y(t), t) + 42*y(t),0) ics = {y(1): 0, Subs(Derivative(y(t), t), t, 1): -1} dsolve(ode,func=y(t),ics=ics)