Article 75R3H Closer look at an identity

Closer look at an identity

by
John
from John D. Cook on (#75R3H)

The previous post derived the identity

cosh_sum1.svg

and said in a footnote that the identity holds at least forx > 1 andy > 1. That's true, but let's see why the footnote is necessary.

Let's have Mathematica plot

cosh_sum2.svg

The plot will be 0 where the identity above holds.

coshacosh1.png

The plot is indeed flat forx > 1 andy > 1, and more, but not everywhere.

If we combine the two square roots

cosh_sum3.svg

and plot again we still get a valid identity forx > 1 andy > 1, but the plot changes.

coshacosh2.png

This is because a b does not necessarily equal (ab) when the arguments may be negative.

The square root function and the arccosh function are not naturally single-valued functions. They require branch cuts to force them to be single-valued, and the two functions require different branch cuts. I go into this in some detail here.

There is a way to reformulate our identity so that it holds everywhere. If we replace

cosh_sum4.svg

with

cosh_sum5.svg

which is equivalent for z > 1, the corresponding identity holds everywhere.

We can verify this with the following Mathematica code.

f[z_] := Exp[(1/2) (Log[z - 1 ] + Log[z + 1])]FullSimplify[Cosh[ArcCosh[x] + ArcCosh[y]] - x y - f[x] f[y]]

This returns 0.

By contrast, the code

FullSimplify[ Cosh[ArcCosh[x] + ArcCosh[y]] - x y - Sqrt[x^2 - 1] Sqrt[y^2 - 1]]

simply returns its input with no simplification, unless we add restrictions on x and y. The code

FullSimplify[ Cosh[ArcCosh[x] + ArcCosh[y]] - x y - Sqrt[x^2 - 1] Sqrt[y^2 - 1], Assumptions -> {x > -1 && y > -1}]

does return 0.

Related postsThe post Closer look at an identity first appeared on John D. Cook.
External Content
Source RSS or Atom Feed
Feed Location http://feeds.feedburner.com/TheEndeavour?format=xml
Feed Title John D. Cook
Feed Link https://www.johndcook.com/blog
Reply 0 comments