Calc/test_ecuaciones_puras_resul...

139 lines
3.2 KiB
JSON

{
"execution_info": {
"timestamp": "2025-06-05T22:55:36.685672Z",
"total_queries": 16,
"successful": 0,
"failed": 16,
"input_file": "test_ecuaciones_puras.json"
},
"results": [
{
"index": 0,
"input": "import sympy",
"output": null,
"result_type": null,
"success": false,
"error": "invalid syntax (<string>, line 1)"
},
{
"index": 1,
"input": "from sympy import symbols, Eq, solve",
"output": null,
"result_type": null,
"success": false,
"error": "invalid syntax (<string>, line 1)"
},
{
"index": 2,
"input": "x, y, z = symbols('x y z')",
"output": null,
"result_type": null,
"success": false,
"error": "invalid syntax (<string>, line 1)"
},
{
"index": 3,
"input": "# Sistema puramente algebraico",
"output": null,
"result_type": null,
"success": false,
"error": "invalid syntax (<string>, line 1)"
},
{
"index": 4,
"input": "eq1 = Eq(x, 5)",
"output": null,
"result_type": null,
"success": false,
"error": "invalid syntax (<string>, line 1)"
},
{
"index": 5,
"input": "eq2 = Eq(y, x + 3)",
"output": null,
"result_type": null,
"success": false,
"error": "invalid syntax (<string>, line 1)"
},
{
"index": 6,
"input": "eq3 = Eq(z, x + y)",
"output": null,
"result_type": null,
"success": false,
"error": "invalid syntax (<string>, line 1)"
},
{
"index": 7,
"input": "sistema = [eq1, eq2, eq3]",
"output": null,
"result_type": null,
"success": false,
"error": "invalid syntax (<string>, line 1)"
},
{
"index": 8,
"input": "solve(sistema)",
"output": null,
"result_type": null,
"success": false,
"error": "name 'solve' is not defined"
},
{
"index": 9,
"input": "# Test más complejo",
"output": null,
"result_type": null,
"success": false,
"error": "invalid syntax (<string>, line 1)"
},
{
"index": 10,
"input": "m, t, u = symbols('m t u')",
"output": null,
"result_type": null,
"success": false,
"error": "invalid syntax (<string>, line 1)"
},
{
"index": 11,
"input": "eq4 = Eq(m, t + u * 5)",
"output": null,
"result_type": null,
"success": false,
"error": "invalid syntax (<string>, line 1)"
},
{
"index": 12,
"input": "eq5 = Eq(t, 4)",
"output": null,
"result_type": null,
"success": false,
"error": "invalid syntax (<string>, line 1)"
},
{
"index": 13,
"input": "eq6 = Eq(m, 3)",
"output": null,
"result_type": null,
"success": false,
"error": "invalid syntax (<string>, line 1)"
},
{
"index": 14,
"input": "sistema2 = [eq4, eq5, eq6]",
"output": null,
"result_type": null,
"success": false,
"error": "invalid syntax (<string>, line 1)"
},
{
"index": 15,
"input": "solve(sistema2)",
"output": null,
"result_type": null,
"success": false,
"error": "name 'solve' is not defined"
}
]
}