> For the complete documentation index, see [llms.txt](https://docs.incari.com/incari-studio/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.incari.com/incari-studio/master/math/boolean/negate.md).

# Negate

## Overview

The **Negate** node takes a *single* **Boolean Value** and returns its inverse. If `Input` is *true*, it returns *false* and vice versa.

It is commonly used along with **Branch** and *logical operator* **Nodes** like **AND** and **OR**. In this case it can be thought of as meaning **NOT**.

| Input | Output |
| ----- | ------ |
| True  | False  |
| False | True   |

## Attributes

*The **Negate Node** has no **Attributes***.

## Inputs

| Input             | Type      | Description                                                           |
| ----------------- | --------- | --------------------------------------------------------------------- |
| *Pulse Input* (►) | **Pulse** | A standard **Input Pulse**, to trigger the execution of the **Node**. |
| `Input [n]`       | **Bool**  | The **Value** to be inversed.                                         |

## Outputs

| Output             | Type      | Description                                                                                                                            |
| ------------------ | --------- | -------------------------------------------------------------------------------------------------------------------------------------- |
| *Pulse Output* (►) | **Pulse** | A standard **Output Pulse**, to move onto the next **Node** along the **Logic Branch**, once this **Node** has finished its execution. |
| `Output`           | **Bool**  | The inverse of `Input`.                                                                                                                |
