I have the following equation -- which is all in terms of d:
{{{{acc == {(d + d (-1 + 1/fpr) (-1 + 1/precision))/(
d + d (-1 + 1/precision) + d (-1 + 1/fpr) (-1 + 1/precision) +
d (-1 + 1/tpr))}}}}}
and I want it to now express this in terms of d. I thought I could use
Solve[acc, {d}, MaxExtraConditions -> Automatic ]
but I get an error message. Now I could do this by hand, but I'm new to Mathematica. I have read the documentation, but I am unsure what I have missed or got wrong.