
Security News
npm Adopts OIDC for Trusted Publishing in CI/CD Workflows
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
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
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
Research
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.