'use strict'; var deepMap = require('../../utils/collection/deepMap'); var acoshAsinhAsechAcsch = require('../../utils/bignumber/acoshAsinhAsechAcsch'); function factory (type, config, load, typed) { var complexAcos = typed.find(load(require('./acos')), ['Complex']); /** * Calculate the hyperbolic arccos of a value, * defined as `acosh(x) = ln(sqrt(x^2 - 1) + x)`. * * For matrices, the function is evaluated element wise. * * Syntax: * * math.acosh(x) * * Examples: * * math.acosh(1.5); // returns 0.9624236501192069 * * See also: * * cosh, asinh, atanh * * @param {number | Complex | Unit | Array | Matrix} x Function input * @return {number | Complex | Array | Matrix} Hyperbolic arccosine of x */ var acosh = typed('acosh', { 'number': function (x) { if (x >= 1 || config.predictable) { return Math.log(Math.sqrt(x*x - 1) + x); } if (x <= -1) { return new type.Complex(Math.log(Math.sqrt(x*x - 1) - x), Math.PI); } return _complexAcosh(new type.Complex(x, 0)); }, 'Complex': _complexAcosh, 'BigNumber': function (x) { return acoshAsinhAsechAcsch(x, type.BigNumber, false, false); }, 'Array | Matrix': function (x) { return deepMap(x, acosh); } }); /** * Calculate acosh for a complex value * @param {Complex} x * @returns {Complex} * @private */ function _complexAcosh(x) { // acosh(z) = (-acos(z).im, acos(z).re) for acos(z).im <= 0 // ( acos(z).im, -acos(z).re) otherwise var temp; var res = complexAcos(x); if (res.im <= 0) { temp = res.re; res.re = -res.im; res.im = temp; } else { temp = res.im; res.im = -res.re; res.re = temp; } return res; } acosh.toTex = '\\cosh^{-1}\\left(${args[0]}\\right)'; return acosh; } exports.name = 'acosh'; exports.factory = factory;