I have considered this linear system
Bx = (A + sI)x = b, s > 0 where s = 10^4 and A is a nxn matrix with n=986703.
I have used ichol command in matlab to compute the Cholesky factor L from As. After this I implemented the CG algorithm to the problem of solving Bx = b. b is the vector calculated from B*x where x= ones(n,1). So i know the "analytical" solution x to the problem.
When i perform the CG algorithm I get an x_tilde and calculate the largest componentwise relative error between x_tilde and x.
Is it theoretically possible to get this componentwise relative error down below 2^−53 using double precision numbers?
regards