
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
A CAS-library wrapped around sympy to simplify use of CAS-functionality in mathematics.
casify
casify
is a Python package that implements a simplified CAS (Computer Algebra System) for symbolic computation, wrapping around sympy
for facilitate its computations. The implementation provides both Norwegian and English names for all of its functions.
from casify import *
solution = solve("x**2 - x - 6 = 0")
print(solution)
from casify import *
løsning = løs("x**2 - x - 6 = 0")
print(løsning)
from casify import *
solution = solve("x + y = 2", "x - y = -1")
print(solution)
from casify import *
løsning = løs("x + y = 2", "x - y = -1")
print(løsning)
from casify import *
f = function("x**2 - x - 6")
print(f(2)) # Computes f(2)
from casify import *
f = funksjon("x**2 - x - 6")
print(f(2)) # Regner ut f(2)
from casify import *
f = function("x**2 - x - 6")
print(f.derivative()) # Gives the general expression for the derivative
print(f.derivative(2)) # computes f'(2)
from casify import *
f = funksjon("x**2 - x - 6")
print(f.derivert()) # gir det generelle uttrykket for den deriverte
print(f.derivert(2)) # regner ut f'(2)
from casify import *
print(factor("x**2 - x - 6")) # faktoriserer x**2 - x - 6
print(expand("2*(x - 1) * (x + 4)")) # utvider 2 * (x - 1) * (x + 4)
from casify import *
print(faktoriser("x**2 - x - 6")) # faktoriserer x**2 - x - 6
print(utvid("2*(x - 1) * (x + 4)")) # utvider 2 * (x - 1) * (x + 4)
FAQs
A CAS-library wrapped around sympy to simplify use of CAS-functionality in mathematics.
We found that casify demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.