# >=

### Description

The operator `>=` has the expression evaluate to true for 'greater than or equal to'.

### Example

```
e is Entity
e.expected_aum >= 10000000
```

Let's say that e, the entity in the [case](/guides/glossary/case.md) where this expression is used, is a small financial advisory firm in Lyon. The expression evaluates to 'true' if the firm, after a record breaking year all around, is expected to have ten million or more in assets under management.

This could trigger the need for extra [documents](/guides/glossary/document.md) to be included, if your organization treats corporate clients with ten million or more in assets under management differently than smaller firms. You might, for example, want to offer this client some extra services.

By attaching the this condition to the documents offering those extra services, you make sure they are offered each time the expression `e.expected_aum >= 10000000` is true.


---

# 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://docs.atfinity.io/rule-language/operators/boolean-operators/greater-than-or-equal.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.
