Script Kit Logo
Script Kit
by John Lindquist
Vercel OSS Program

Scripts by Nko00

PhD Math Solver

Nko00's avatar
Nko00
// Name: PhD Math Solver // Description: Advanced symbolic and numeric mathematics toolkit with calculus, algebra, optimization, transforms, and more. // Author: Nko00 // GitHub: Nko00 import "@johnlindquist/kit" import { create, all, MathNode } from "mathjs" import nerdamer from "nerdamer" import "nerdamer/Calculus" import "nerdamer/Algebra" import "nerdamer/Solve" import "nerdamer/Extra" type Num = number type Vec = number[] type Mat = number[][] type Complex = { re: number; im: number } const math = create(all, {})

PhD Math Exercises & Biology E

Nko00's avatar
Nko00
// Name: PhD Math Exercises & Biology Explainer // Description: Generate PhD-level math exercises with solutions or detailed biology explanations using AI. // Author: Nko00 // GitHub: Nko00 import "@johnlindquist/kit" const mode = await arg("What would you like to generate?", [ { name: "PhD-level Math Exercises", description: "Create rigorous, original graduate/PhD-level exercises with full solutions", value: "math", }, { name: "Explain a Biology Topic", description: "Produce a deep, structured explanation with mechanisms, experiments, and references", value: "bio", }, ])