Question: partition an interval [ a, b ]

 

Hello,

How to  partition an interval  [ a, b ]  in n sub intervals  with  h = (b-a) / n  ? 

Example :

a = 0 ,   b = 1,   n = 4   then   h = 0.25  -------->  [ 0 , 0.25 , 0.50 ,  0.75,  1 ] 

Thanks

Please Wait...