How to use the COS function
The COS function calculates the cosine of an angle.
Table of Contents
- COS Function Syntax
- COS Function Arguments
- COS Function Example
- How to calculate cosine using degrees
- How to plot a cosine wave
- How to change the cosine wave amplitude
- How to change the cosine wave period
- How to change the cosine wave midline
- How to use the COS function with a right or right-angled triangle
- Get Excel *.xlsx file
1. COS Function Syntax
COS(number)
2. COS function Arguments
number | Required. The radian angle you want to know the cosine of. |
3. COS function example
Formula in cell C3:
4. How to calculate cosine using degrees
Use the RADIANS function to convert degrees to radians.
Formula in cell C3:
Explaining formula
Step 1 - Convert degrees to radians
The RADIANS function converts degrees to radians.
Function syntax: RADIANS(angle)
RADIANS(B3)
becomes
RADIANS(360)
and returns approx. -3.28 or -2*pi.
Step 2 - Calculate the cosine
The COS function calculates the cosine of an angle.
Function syntax: COS(number)
COS(RADIANS(B3))
becomes
COS(-2*pi)
and returns 0 (zero).
5. How to plot a cosine wave
The image above demonstrates a scatter chart containing a cosine graph. Here is how to create a cosine plot:
The formula in cell C15 creates radians starting from -2*pi and adds (1/4)*pi for each cell below.
Formula in cell C15:
Formula in cell D15:
5.1 Explaining formula in cell C15
Step 1 - Calculate -2*pi
The PI function returns the number pi, it has no arguments.
-2*PI()
becomes
-2*3.14 (approx.)
and returns approx. -6.28
Step 2 - Subtract with pi/4
The ROW function returns a number representing the row in a cell reference.
ROW(reference)
A1 is a relative cell reference meaning it changes when the cell is copied to cells below, this creates a sequential list of numbers starting from 1 to n.
(ROW(A1)-1)*PI()/4
becomes
(1-1)*PI()/4
becomes
0*PI()/4
and returns 0 (zero).
Step 3 - Calculate radian
-2*PI()+(ROW(A1)-1)*PI()/4
becomes
-6.28 + 0 equals approx. -6.28
5.2 How to insert a Scatter chart with Smooth Lines and Markers
- Select cell range B3:B31.
- Press and hold CTRL.
- Select cell range D3:D13.
- Go to tab "Insert" on the ribbon.
- Press with left mouse button on the "Insert Line or Area chart" button, and a pop-up menu appears.
- Press with left mouse button on the "Line with Markers" button, see the image above.
- A new chart appears on the worksheet, see the image below.
Double press with left mouse button on the chart to open the "Format Chart Area Pane".
Select the line on the chart, press with left mouse button on the checkbox "Smoothed Line" on the "Format Chart Area Pane".
Double-press with left mouse button on the y-axis values, the "Format Axis Pane" shows up.
Press with mouse on the radio button "Axis value:" and type -1.5 (Horizontal Axis crosses)
Press with right mouse button on on x-axis values. Press with mouse on "Add Major gridlines
6. How to change the cosine wave amplitude
The general form of the COSINE wave is y = A*COS(B*(x-C))+D
Constant A in the formula above changes the amplitude or height of the cosine wave. The image above shows two different cosine waves, a green and a yellow one.
The yellow cosine wave has an amplitude or height of 2 and the green one has an amplitude of 1.
Formula in cell D14:
Formula in cell E14:
7. How to change the cosine wave period
The general form of the cosine wave is y = A*COS(B*(x-C))+D
Constant B changes the period, the chart above shows two cosine waves. The green cosine wave completes a cycle in 2π or 360°, however, the yellow cosine wave completes two cycles in 2π or 360°.
Formula in cell C3:
Formula in cell D3:
8. How to change the cosine wave midline
The general form of the Sin wave is y = A*Sin(B*(x-C))+D
Constant D lets you change the midline which is the centerline in which the cosine wave oscillates back and forth. The midline is horizontal and is right in between the minimum and maximum cosine function values.
Formula in cell D14:
The green cosine wave in column D has a maximum value of 1 and a minimum value of -1, the midline is 0 (zero).
Formula in cell E14:
The yellow cosine wave in column E has a maximum value of 2 and a minimum value of 0, the midline is 1 (zero).
9. How to use the COS function with a right or right-angled triangle
A, B and C are angles, C is 90°, shown in the image above. A + B + C = 180°. One of the angles must be 90° (right angle triangle), in the example above C is 90°.
d, e, and f are lengths of the sides of the triangle. Side d and e are perpendicular to each other, meaning the angle between them are 90°.
COSINE A = e/f
COSINE A is equal to the ratio between sides e and f, this is only true if the triangle is a right-angled triangle.
Useful resources
COS function - Microsoft
COS function
Functions in 'Math and trigonometry' category
The COS function function is one of many functions in the 'Math and trigonometry' category.
How to comment
How to add a formula to your comment
<code>Insert your formula here.</code>
Convert less than and larger than signs
Use html character entities instead of less than and larger than signs.
< becomes < and > becomes >
How to add VBA code to your comment
[vb 1="vbnet" language=","]
Put your VBA code here.
[/vb]
How to add a picture to your comment:
Upload picture to postimage.org or imgur
Paste image link to your comment.
Contact Oscar
You can contact me through this contact form