diff ( y1 , x , 1 ) = m1 * y2 + 1.0; diff ( y2 , x , 1 ) = y1 - 1.0; ! Digits := 32; max_terms:=30; ! x_start := 0.1; x_end := 10.0; diff(y1,0,exact_soln_y1(x_start)); diff(y2,0,exact_soln_y2(x_start)); glob_look_poles := true; glob_max_iter := 1000000; glob_display_interval := 0.1; glob_max_minutes := 10; ! exact_soln_y1 := proc(x) return(1.0 + cos(x)); end; exact_soln_y2 := proc(x) return(1.0 + sin(x)); end;