# Numbers, Arrays, Vectors, and Matrices

In the CSA Prediction Engine, we consistently represent numbers, arrays, and vectors in **at least two dimensions** to align with our mathematical framework. For example, a single number like 0.7 is written as `[[0.7]]`, while a row vector with K variables is noted as `[[11, 12, 13, ..., 1K]]`. Column vectors follow a similar logic, `[[11], [21], [31], ... [N1]]`.

Additionally, we adopt column-major operations, a natural approach for linear algebra, inherited from our respect for [Fortran’s](https://en.wikipedia.org/wiki/Fortran) roots (apologies to C users!).

<br>


---

# 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.csanalytics.io/getting-started/numbers-arrays-vectors-and-matrices.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.
