-1

Suppose that i've the next:

  double a = Math.Pow(b, c);

And i know 'a' and 'c' but i need to get 'b', like:

  double b = a ??? c;

1 Answers1

0

Do Math.Pow of the inverse of c:

double b = Math.Pow(a, 1.0 / c);
dvo
  • 2,113
  • 1
  • 8
  • 19