hi i can not manage to understand what blocks here :
a = DSolve[{y'[x] == x*Log[x], y[1] == 1}, y[x], x];
a[[1]]
g[x_] = y[x] /. a[[1]]
g[1]
Plot[g[x], {x, 0.1, 1}]
it is the same if i replace a[[1]] with a[[1]][[1]]
1) why is it nor accepted as e diff equa ?
2) what is a ? a list of list ???
i found this on a web site ; why does this code works and not mine ?
solution = DSolve[y'[x] == x, y[x], x]
f[x_] = y[x] /. solution[[1]]