1
0

acosh.c 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /* origin: FreeBSD /usr/src/lib/msun/src/e_acosh.c */
  2. /*
  3. * ====================================================
  4. * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
  5. *
  6. * Developed at SunSoft, a Sun Microsystems, Inc. business.
  7. * Permission to use, copy, modify, and distribute this
  8. * software is freely granted, provided that this notice
  9. * is preserved.
  10. * ====================================================
  11. *
  12. */
  13. /* acosh(x)
  14. * Method :
  15. * Based on
  16. * acosh(x) = log [ x + sqrt(x*x-1) ]
  17. * we have
  18. * acosh(x) := log(x)+ln2, if x is large; else
  19. * acosh(x) := log(2x-1/(sqrt(x*x-1)+x)) if x>2; else
  20. * acosh(x) := log1p(t+sqrt(2.0*t+t*t)); where t=x-1.
  21. *
  22. * Special cases:
  23. * acosh(x) is NaN with signal if x<1.
  24. * acosh(NaN) is NaN without signal.
  25. */
  26. #include "libm.h"
  27. static const double
  28. ln2 = 6.93147180559945286227e-01; /* 0x3FE62E42, 0xFEFA39EF */
  29. double acosh(double x)
  30. {
  31. double t;
  32. int32_t hx;
  33. uint32_t lx;
  34. EXTRACT_WORDS(hx, lx, x);
  35. if (hx < 0x3ff00000) { /* x < 1 */
  36. return (x-x)/(x-x);
  37. } else if (hx >= 0x41b00000) { /* x > 2**28 */
  38. if (hx >= 0x7ff00000) /* x is inf of NaN */
  39. return x+x;
  40. return log(x) + ln2; /* acosh(huge) = log(2x) */
  41. } else if ((hx-0x3ff00000 | lx) == 0) {
  42. return 0.0; /* acosh(1) = 0 */
  43. } else if (hx > 0x40000000) { /* 2**28 > x > 2 */
  44. t = x*x;
  45. return log(2.0*x - 1.0/(x+sqrt(t-1.0)));
  46. } else { /* 1 < x < 2 */
  47. t = x-1.0;
  48. return log1p(t + sqrt(2.0*t+t*t));
  49. }
  50. }