import Chat from "@/components/Chat"; import Question from "@/components/Question"; import Answer from "@/components/Answer"; const Calculator = () => { return ( solve this problem for me:
Find the derivative of f(x) = x³ + 2x² - 7
Sure here is the response:

✅ Step-by-step solution:


We’ll differentiate f(x) term by term:

  1. Derivative of x³ is:
        → 3x²
  2. Derivative of 2x² is:
        → 2 × 2x = 4x
  3. Derivative of constant -7 is:
        → 0

🎯 Final Answer:

f'(x) = 3x² + 4x

); }; export default Calculator;