Metadata-Version: 2.4
Name: montecarlo-nystrom
Version: 1.1.0
Summary: Monte-Carlo Nystrom method in NumPy / PyTorch
Author-email: ultrasphere-dev <34j.95a2p@simplelogin.com>
License-Expression: MIT
Project-URL: Bug Tracker, https://github.com/ultrasphere-dev/montecarlo-nystrom/issues
Project-URL: Changelog, https://github.com/ultrasphere-dev/montecarlo-nystrom/blob/main/CHANGELOG.md
Project-URL: documentation, https://montecarlo-nystrom.readthedocs.io
Project-URL: repository, https://github.com/ultrasphere-dev/montecarlo-nystrom
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.12
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: array-api-compat>=1.12.0
Requires-Dist: array-api-extra>=0.9.0
Requires-Dist: cyclopts>=3.24.0
Requires-Dist: matplotlib>=3.10.7
Requires-Dist: numpy>=2.2.6
Requires-Dist: types-array-api>=1.1.4
Requires-Dist: ultrasphere>=2.0.4
Dynamic: license-file

# Monte-Carlo Nystrom

<p align="center">
  <a href="https://github.com/ultrasphere-dev/montecarlo-nystrom/actions/workflows/ci.yml?query=branch%3Amain">
    <img src="https://img.shields.io/github/actions/workflow/status/ultrasphere-dev/montecarlo-nystrom/ci.yml?branch=main&label=CI&logo=github&style=flat-square" alt="CI Status" >
  </a>
  <a href="https://montecarlo-nystrom.readthedocs.io">
    <img src="https://img.shields.io/readthedocs/montecarlo-nystrom.svg?logo=read-the-docs&logoColor=fff&style=flat-square" alt="Documentation Status">
  </a>
  <a href="https://codecov.io/gh/ultrasphere-dev/montecarlo-nystrom">
    <img src="https://img.shields.io/codecov/c/github/ultrasphere-dev/montecarlo-nystrom.svg?logo=codecov&logoColor=fff&style=flat-square" alt="Test coverage percentage">
  </a>
</p>
<p align="center">
  <a href="https://github.com/astral-sh/uv">
    <img src="https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/uv/main/assets/badge/v0.json" alt="uv">
  </a>
  <a href="https://github.com/astral-sh/ruff">
    <img src="https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json" alt="Ruff">
  </a>
  <a href="https://github.com/pre-commit/pre-commit">
    <img src="https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white&style=flat-square" alt="pre-commit">
  </a>
</p>
<p align="center">
  <a href="https://pypi.org/project/montecarlo-nystrom/">
    <img src="https://img.shields.io/pypi/v/montecarlo-nystrom.svg?logo=python&logoColor=fff&style=flat-square" alt="PyPI Version">
  </a>
  <img src="https://img.shields.io/pypi/pyversions/montecarlo-nystrom.svg?style=flat-square&logo=python&amp;logoColor=fff" alt="Supported Python versions">
  <img src="https://img.shields.io/pypi/l/montecarlo-nystrom.svg?style=flat-square" alt="License">
</p>

---

**Documentation**: <a href="https://montecarlo-nystrom.readthedocs.io" target="_blank">https://montecarlo-nystrom.readthedocs.io </a>

**Source Code**: <a href="https://github.com/ultrasphere-dev/montecarlo-nystrom" target="_blank">https://github.com/ultrasphere-dev/montecarlo-nystrom </a>

---

Monte-Carlo Nystrom method in NumPy / PyTorch

## Installation

Install this via pip (or your favourite package manager):

```shell
pip install montecarlo-nystrom
```

## Usage

Solve integral equations of the second kind of the following form.

$\forall d \in \mathbb{N}.$
$\forall \Omega \in \mathbb{R}^d [\Omega \text{ is bounded Lipschitz}].$
$`\forall p \in L^\infty(\Omega, {\mathbb{R}}_{\geq 0}) [\int_\Omega p(y) dy = 1].`$
$\forall f, z \in L^2(\Omega,\mathbb{C}).$
$\forall k \in L^2(\Omega,L^2(\Omega,\mathbb{C}))$
$[z(y) + \int_\Omega k(y, y') z(y') p(y') dy' = f(y)].$

Let $N \in \mathbb{N}$, $(y_i)_{i=1}^N$ be i.i.d. samples drawn from $p$.

Let $(z_{N,i})_{i=1}^N$ be the solution of the linear system

$$
z_{N,i} + \frac{1}{N} \sum_{j=1}^N k(y_i, y_j) z_{N,j} = f(y_i)
\quad i \in \{1, \ldots, N\}
$$

and

$$
z_N(y) := f(y) - \frac{1}{N} \sum_{i=1}^N k(y, y_i) z_{N,i}
\quad y \in \Omega
$$

Then $z_N$ would approximate $z$ as $N \to \infty$.

The below example solves the case where $d = 1$, $\Omega = [0, 1]$, $p$ (`random_samples`) is the uniform distribution on $[0, 1]$, $k(x, y) = \|x - y\|^{-0.4}$ (`kernel`), and $f(x) = 1$ (`rhs`), and evaluates the solution at $x = (0.5,)$.

```python
>>> import numpy as np
>>> from montecarlo_nystrom import montecarlo_nystrom
>>> rng = np.random.default_rng(0)
>>> def random_samples(n):
...     return rng.uniform(0, 1, size=(n, 1))
>>> def kernel(x, y):
...     return np.linalg.vector_norm(x - y, axis=-1) ** -0.4
>>> def rhs(x):
...     x0 = x[..., 0]
...     return np.ones_like(x0)
>>> z_N = montecarlo_nystrom(
...     random_samples=random_samples,
...     kernel=kernel,
...     rhs=rhs,
...     n=100,
...     n_mean=10,
... )
>>> np.round(z_N(np.asarray((0.5,))), 6)  # Evaluate at x=0.5
np.float64(0.272957)
```

## References

- Feppon, F., & Ammari, H. (2022). Analysis of a Monte-Carlo Nystrom Method. SIAM J. Numer. Anal. Retrieved from https://epubs.siam.org/doi/10.1137/21M1432338

## Contributors ✨

Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):

<!-- prettier-ignore-start -->
<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
<!-- prettier-ignore-start -->
<!-- markdownlint-disable -->
<table>
  <tbody>
    <tr>
      <td align="center" valign="top" width="14.28%"><a href="https://github.com/ultrasphere-dev"><img src="https://avatars.githubusercontent.com/u/231439132?v=4?s=80" width="80px;" alt="ultrasphere-dev"/><br /><sub><b>ultrasphere-dev</b></sub></a><br /><a href="https://github.com/ultrasphere-dev/montecarlo-nystrom/commits?author=ultrasphere-dev" title="Code">💻</a> <a href="#ideas-ultrasphere-dev" title="Ideas, Planning, & Feedback">🤔</a> <a href="https://github.com/ultrasphere-dev/montecarlo-nystrom/commits?author=ultrasphere-dev" title="Documentation">📖</a></td>
    </tr>
  </tbody>
</table>

<!-- markdownlint-restore -->
<!-- prettier-ignore-end -->

<!-- ALL-CONTRIBUTORS-LIST:END -->
<!-- prettier-ignore-end -->

This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!

## Credits

[![Copier](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/copier-org/copier/master/img/badge/badge-grayscale-inverted-border-orange.json)](https://github.com/copier-org/copier)

This package was created with
[Copier](https://copier.readthedocs.io/) and the
[browniebroke/pypackage-template](https://github.com/browniebroke/pypackage-template)
project template.
