Guest User

Untitled

a guest
Feb 18th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.07 KB | None | 0 0
  1. {a, b, c} = RandomReal[{0, 1}, 3, WorkingPrecision -> 50];
  2. NIntegrate[rho[xi] Erf[a xi] OwenT[ b xi, c], {xi, 0, Infinity},
  3. WorkingPrecision -> 20]
  4.  
  5. xx = (I b c 2)/Sqrt[
  6. 1 + b^2]; V = (Sqrt[1 + 2 a^2 + b^2] - Sqrt[2] a)/Sqrt[1 + b^2];
  7. vs = {-(Sqrt[-I + b]/Sqrt[I + b]), Sqrt[-I + b]/Sqrt[
  8. I + b], -(Sqrt[I + b]/Sqrt[-I + b]), Sqrt[I + b]/Sqrt[-I + b]};
  9. ws = {1/2 (xx - Sqrt[-4 + xx^2]), 1/2 (-xx - Sqrt[-4 + xx^2]),
  10. 1/2 (xx + Sqrt[-4 + xx^2]), 1/2 (-xx + Sqrt[-4 + xx^2])};
  11.  
  12. 1/(Sqrt[2] Pi^2) (ArcTan[Sqrt[2] a]/Sqrt[2] ArcTan[ c] + (
  13. Sqrt[2] b I)/(1 +
  14. b^2) Sum[((Log[
  15. V - vs[[i]]] (Log[V - ws[[j]]] -
  16. Log[(V - ws[[j]])/(vs[[i]] - ws[[j]])]) -
  17. PolyLog[2, (-V + vs[[i]])/(
  18. vs[[i]] - ws[[j]])]) - (Log[
  19. 1 - vs[[i]]] (Log[1 - ws[[j]]] -
  20. Log[(1 - ws[[j]])/(vs[[i]] - ws[[j]])]) -
  21. PolyLog[2, (-1 + vs[[i]])/(vs[[i]] - ws[[j]])])) (
  22. vs[[i]] (-1)^(j + 1))/(
  23. Product[vs[[i]] - vs[[l]], {l, 1, i - 1}] Product[
  24. vs[[i]] - vs[[l]], {l, i + 1, 4}]), {i, 1, 4}, {j, 1, 4}] )
Add Comment
Please, Sign In to add comment