Question: what's wrong with this pde?

> restart; with(plottools);

> U := u(x, t);


> pde := (diff(U, `$`(x, 2)))/(2*x)^2 = (1/1250)*(diff(U, `$`(x, 2)))+(1/9)*sin(0.10e-1*Pi*t)*exp(0.10e-1*Pi*t^2);

ic := u(x, 0) = x^2, (D[2](u))(x, 0) = 1;

bc := (D[1](u))(0, t) = 0, u(1, t) = 1;


> S := pdsolve(pde, {bc, ic}, numeric);
Error, (in pdsolve/numeric/par_hyp) Incorrect number of initial conditions, expected 0, got 2
                              "`"


what am i doing wrong again???

Please Wait...