Skip to content
This repository has been archived by the owner on Sep 10, 2024. It is now read-only.

Integrals #93

Open
includealex opened this issue Nov 24, 2022 · 3 comments
Open

Integrals #93

includealex opened this issue Nov 24, 2022 · 3 comments
Assignees

Comments

@includealex
Copy link
Contributor

We can now implement integrals using Simpson's rules:
$$\int_a^b f(x) dx \approx \frac {b - a}{6} \cdot [f(a) + 4f (\frac{a + b}{2}) + f(b)]$$
or
$$\int_ a^b f(x) dx \approx \frac{b-a}{8} \cdot [f(a) + 3f (\frac{2a + b}{3}) + 3f(\frac{a+b}{3}) + f(b)]$$

@Graur what do you think about having integral object in eo-math?

@Graur
Copy link
Contributor

Graur commented Nov 24, 2022

@includealex I like this idea, go ahead

@0pdd
Copy link

0pdd commented Nov 29, 2022

@includealex the puzzle #96 is still not solved.

@0pdd
Copy link

0pdd commented May 19, 2023

@includealex the puzzle #129 is still not solved; solved: #96.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants