/// <summary>
 /// Raise this <c>Complex</c> to the inverse of the given value.
 /// </summary>
 /// <param name="complex">The <see cref="Complex"/> number to perform this operation on.</param>
 /// <param name="rootExponent">
 /// The root exponent.
 /// </param>
 /// <returns>
 /// The complex raised to the inverse of the given exponent.
 /// </returns>
 public static Complex Root(this Complex complex, Complex rootExponent)
 {
     return(Complex.Pow(complex, 1 / rootExponent));
 }