I am fairly new at MAPLE and I'm having some trouble solving this ODE.
$$(t+1)\frac{dy}{dt}-2(t^2+t)y=\frac{e^{t^2}}{t+1}$$
My initial value problem is $$t>-1, y(0)=5$$
I put the equation in standard form and typed into maple
However I am aware that when my initial value is $y(0)=5$ my equation becomes $4=0$ which is not possible. So I am confused on whether or not it is possible to find a general solution.

The image of your Maple code shows an italic
e, which indicates that you may have tried to just type the letter "e" as the base of the natural logarithm. That would be committing a common usage mistake.If entered correctly the terms like
exp(t^2)would get displayed in 2D Output as an upright Roman "e" rather than with an italic "e" as the base.In 1D plaintext Maple code the input would look like as follows (where I also show 1D output just for simplicity of my inlining the code here).
To enter
exp(t^2)while in (default) fancy 2D Input mode in a Maple Document, you have three choices: 1) Just type it in asexp(t^2)2) Use the Expression palette in the GUI's left panel which has an item for inserting a typeset 2D e^blah . 3) Type the lettersexpand then the Esc key, to get a popup of command-completion suggestions, one of which is in the typeset e^blah form.The keyboard acceleration to invoke command-completion varies by platform, and on Linux the Esc key does it. See the Help system for details, or look here.