Recent content by suraj goyal

  1. S

    Mathematica Mathematica Looping Help: Find 'v' for 10 Different Values of 't

    Now I have tried the following For[t = 1, t < 100, t = t + 10, a = t^2; b = (t + 1)*I; c = t^2 + 2*t*I + 1; h1 = (-b + Sqrt[b^2 - 4*a*c])/(2*a); h2 = (-b - Sqrt[b^2 - 4*a*c])/(2*a); a11 = Sqrt[p]*h1; a12 = h1*2; a21 = 3*h2^2; a22 = 4 + p; S = {{a11, a22}, {a21, a22}}...
  2. S

    Mathematica Mathematica Looping Help: Find 'v' for 10 Different Values of 't

    pl help Here I have written a mathematica code. It is a small example of my actual problem. In this code, 't' is an arbitrary constant which is being fixed at the top of the programme by assigning a value. All the other variables 'a','b','c' depend upon 't' . and 'h1','h2' are the roots of...