> ## Documentation Index
> Fetch the complete documentation index at: https://docs.firebolt.io/llms.txt
> Use this file to discover all available pages before exploring further.

> Reference material for COS function

# COS

Trigonometric function that calculates the cosine of a specific value in radians.

## Syntax

```sql theme={"theme":{"light":"css-variables","dark":"css-variables"}}
COS(<value>)
```

## Parameters

| Parameter | Description                                               | Supported input types |
| :-------- | :-------------------------------------------------------- | :-------------------- |
| `<value>` | The value that determines the returned cosine in radians. | `DOUBLE PRECISION`    |

## Return Type

`COS` returns a value of type `DOUBLE PRECISION`.

## Example

The following query calculates the cosine of 0:

<div className="query-window">
  ```
  SELECT COS(0) as result;
  ```

  | result <span>double</span> |
  | :------------------------- |
  | 1                          |

  <p><span>Rows: 1</span><span>Execution time: 5.64ms</span></p>
</div>

The following query calculates the cosine of pi:

<div className="query-window">
  ```
  SELECT ROUND(COS(PI()), 5) as result;
  ```

  | result <span>double</span> |
  | :------------------------- |
  | -1                         |

  <p><span>Rows: 1</span><span>Execution time: 5.29ms</span></p>
</div>
