COS H (Trigonometry)

  • Thread starter Thread starter Shortstopper00
  • Start date Start date
S

Shortstopper00

I need to use the funtion COSH squared or COSH ^2 in a cell to calculate an
answer. How can this be done?
 
Shortstopper00 said:
I need to use the funtion COSH squared or COSH ^2 in a cell to calculate
an answer. How can this be done?

You almost wrote the answer yourself:

=COSH(A1)^2

I suspect there is more behind your simplistic question. If you need more
help, provide more details.
 
Shortstopper00 said:
I need to use the funtion COSH squared or COSH ^2 in a cell to calculate an
answer. How can this be done?


Does this do what you want?

=POWER(COSH(A1),2)
 
I would think this should do it...

=COSH(A1)^2

If you are going to make it part of a longer calculation, then you might
want to enclose it in parentheses to make it clear what is going on....

=3*(COSH(A1)^2)+4
 
I don't know which half of the problem is causing you difficulty.

To take the COSH of A1, the formula is =COSH(A1)
To take the square of B1 the function is =B1^2
So to take the square of the COSH of A1 the function is =COSH(A1)^2
 
Since XL uses parenthesis to in-close functions, you would write it:

=COSH(A1)^2

Note that this is different than
=COSH(A1^2)
 
Back
Top