I am trying to solve an integral given below:
Integrate[r^2/(-α r^3 + r^2 - 2 m r + Q^2), r] but since coefficients of this cubic polynomial are as parameters, so i could not get any reasonable answer from mathematica, output:
(* -RootSum[Q^2 - 2 m #1 + #1^2 - α #1^3 &, (Log[r - #1] #1^2)/(2 m - 2 #1 + 3 α #1^2) &] *) Please help me in finding this integral, what information i have for these coefficients is as: \alpha is a positive number, and m and Q are reals, with m positive real.



RootSum[...]is a reasonable answer, see e.g. a related question How do I work with Root objects? $\endgroup$RootSumunless you learn aboutRoot. You have to try a bit harder. You can compute that expression for special values of prarameters e.g.With[{Q = 1, m = 2, α = 0}, -RootSum[ Q^2 - 2 m #1 + #1^2 - α #1^3 &, (Log[r - #1] #1^2)/(2 m - 2 #1 + 3 α #1^2) &]]. $\endgroup$Integrate[r^2/(-\[Alpha] r^3 + r^2 - 2 m r + Q^2), r] //Normal//ToRadicals? $\endgroup$