# TFHE Basic Operations

This section introduces the **basic homomorphic operations** you’ll use constantly in TFHE :

* **Homomorphic addition** (ciphertext + ciphertext)
* **Homomorphic addition with a constant** (ciphertext + clear value)
* **Homomorphic multiplication by a small constant polynomial** (ciphertext × clear polynomial)

These operations are called **linear operations** because they don’t require bootstrapping by themselves and they behave “nicely” with noise (it grows predictably). They are also the building blocks for more advanced TFHE primitives like key switching, external product, CMux, and bootstrapping.

> We keep the focus here on **(G)LWE-style ciphertexts** (LWE, RLWE/GLWE), since TFHE builds everything on top of them.

***


---

# Agent Instructions: 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:

```
GET https://sabanaku77.gitbook.io/fhe-handbook-for-beginners/tfhe-basic-operations.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
