> For the complete documentation index, see [llms.txt](https://docs.valq.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.valq.com/model/formula-functions/math-functions/sqrt.md).

# SQRT

The SQRT function returns the square root of a number.

### Syntax

SQRT(value) - > number

### Arguments

<table><thead><tr><th width="134.79245283018867">Arguments</th><th width="148">Datatype</th><th width="415">Description</th></tr></thead><tbody><tr><td>value</td><td>Number, Node reference</td><td>The number or node for which you want the square root of.</td></tr></tbody></table>

### Example

Consider an example where a node has the following values. Calculate the square root of these Values.&#x20;

<table data-header-hidden><thead><tr><th width="112">Column1</th><th width="55">Column2</th><th width="51">Column3</th><th width="62">Column4</th><th width="66">Column5</th><th width="71">Column6</th></tr></thead><tbody><tr><td><mark style="color:purple;">Number</mark></td><td>25</td><td>81</td><td>169</td><td>289</td><td>49</td></tr></tbody></table>

To calculate the Square Root, the following formula should be written in the \[Square root] node:

<mark style="color:blue;">**`SQRT`**</mark>**`(`**<mark style="color:purple;">**`[Number]`**</mark>**`)`**

### Result

| Square root |  5  |  9  |  13 |  17 |  7  |
| ----------- | :-: | :-: | :-: | :-: | :-: |


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.valq.com/model/formula-functions/math-functions/sqrt.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
