introduce_function
Defines and stores a SymPy function variable for use in symbolic mathematics. Accepts a function name to create a Function object, enabling its application in differential equations and mathematical expressions.
Instructions
Introduces a SymPy function variable and stores it.
Takes a function name and creates a SymPy Function object for use in defining differential equations.
Example:
{func_name: "f"} will create the function f(x), f(t), etc. that can be used in expressions
Returns:
The name of the created function.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
func_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"func_name": {
"title": "Func Name",
"type": "string"
}
},
"required": [
"func_name"
],
"title": "introduce_functionArguments",
"type": "object"
}