Three P Math Solver
Description: Provides step-by-step solutions for mathematical problems.
API Response Structure:
{
  "problem": {
    "expression": "2x + 5= 13",
    "type": "Linear Equation"
  },
  "solution": {
    "steps": [
      {
        "description": "Subtract 5 from both sides",
        "result": "2x = 8"
      },
      {
        "description": "Divide both sides by 2",
        "result": "x = 4"
      }
    ],
    "finalAnswer": "x = 4",
    "verification": "2(4) + 5 = 13 ✓"
  },
  "solutionWebSites": [
    {
      "url": "https://mathsolver.com/example",
      "visibleText": "See detailed solution"
    }
  ],
  "type": "instantAnswers",
  "configType": "threePMathSolver"
}
Fields:
- 
      problem(object): Mathematical problem- 
          expression(string): Problem expression
- 
          type(string): Problem type
 
- 
          
- 
      solution(object): Solution information- 
          steps(array): Solution steps
- 
          finalAnswer(string): Final result
- 
          verification(string): Answer verification
 
- 
          
- 
      solutionWebSites(array): External resources- 
          url(string): Resource URL
- 
          visibleText(string): Display text
 
- 
          
- 
      type(string): Always "instantAnswers"
- 
      configType(string): Always "threePMathSolver"
