Group Abstract Group Abstract

Message Boards Message Boards

0
|
9.4K Views
|
5 Replies
|
0 Total Likes
View groups...
Share
Share this post:
GROUPS:

Can mathematica display or verify trig identities?

Posted 10 years ago

I was trying to prove $ |cosh\:z|^2 = sinh^2\:x + cos^2\:x $, ended up with a different answer and wanted to see how Mathematica did it - so is there a way to ask mathematica to either display or verify this - and other trig identities?

POSTED BY: Alan Smith
5 Replies
POSTED BY: Udo Krause
Posted 10 years ago
POSTED BY: Alan Smith

Because of $\overline{\cosh(z)}=\cosh(\bar{z})$ it can be produced by

In[23]:= Simplify[TrigExpand[TrigReduce[Cosh[x + I y] Cosh[x - I y]]] /. {Sin[y]^2 -> (1 - Cos[y]^2),
                                                                          Cosh[x]^2 -> (1 + Sinh[x]^2)}]
Out[23]= Cos[y]^2 + Sinh[x]^2

and then checked again by

In[37]:= FullSimplify[Cosh[x + I y] Cosh[x - I y] - (Cos[y]^2 + Sinh[x]^2)]
Out[37]= 0

B.t.w. there are equivalent answers, e.g. if one takes the other side of the basic identies in replacement

In[39]:= Simplify[TrigExpand[TrigReduce[Cosh[x + I y] Cosh[x - I y]]] /. {Cos[y]^2 -> (1 - Sin[y]^2), 
                                                                          Sinh[x]^2 -> (Cosh[x]^2 - 1)}]
Out[39]= Cosh[x]^2 - Sin[y]^2

In[41]:= FullSimplify[Cosh[x + I y] Cosh[x - I y] - Cosh[x]^2 + Sin[y]^2]
Out[41]= 0
POSTED BY: Udo Krause
Posted 10 years ago

Sorry, typo - $ | { cosh(z)}|^2 = sinh^2 x + cos^2y $

POSTED BY: Alan Smith

The equality looks false:

Plot[{Abs[Cosh[x]]^2, Sinh[x]^2 + Cos[x]^2}, {x, -1, 1}]
POSTED BY: Gianluca Gorni
Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard