What is the difference between single and multistep methods
Solution
Ans 3:
One-step algorithms are characterised by no ``memory\'\'. To compute the solution point Yj+1, a one-step algorithm uses the solution point Yj as initial value, and does not use any previously computed solution points. In other words, it treats each new time step computation as an initial value problem.
Ex: Range-Kutta Method
Multistep algorithms, in contrast to one-step algorithms, have ``memory\'\', that is they use k+1 previously computed solution values Yj, Yj-1,..Yj-kto compute the next solution value Yj+1
Ex: Adams Method
Ans 4:
Explicit methods calculate the state of a system at a later time from the state of the system at the current time, while implicit methods find a solution by solving an equation involving both the current state of the system and the later one.
Ans 5:
In shooting method the solution starts from one of the boundary value problem and shoot to the other end with an initial value solver until the boundary condition at the other end converges to its correct value using iterative methods.
In Finite difference method the variables, differential equation and the boundary conditions are all discretised and then the boundary condition are embedded into diffrential equation to form the set of linear systems and the solution is obtained from system of linear equations.
