This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Murgent, I Must Have The Answer Today!

Here's what's going to be needed:
* Simplification
* Differentiation
* Collect coefficient
* Polynomial division
* Cubic solver (exact value)
* Numerous trigonometric and utility functions
- Functions can be nested

can YOU help me?

only the BEST can answer.

Parents
  • It was a difficult task, but I think these are the methods required:

    void DoTheJob(void)
    {
      Simplification ( DataToBeSimplified );
      Differentiation (EquationToBeDifferentiated );
      CollectCoEfficient ( DataToBe CoEfficientified );
      PolynomialDivision ( DataToBeDividedByPolynomially );
      CubicSolver ( EquationToBeSolved );
      NumerousTrignometricOperations ( LotsOfData );
      EnableNesting ( PERMITTED );
    }
    

    You'll find the prototypes of the necessary functions in:

    #include "MiscellaneousNumericalCalculationsTooDifficultForMrAverageToUnderstand.H"
    

    Sorry, but I cannot spend any more time on this task. I think there is now sufficient information to complete your urgent assignment.

Reply
  • It was a difficult task, but I think these are the methods required:

    void DoTheJob(void)
    {
      Simplification ( DataToBeSimplified );
      Differentiation (EquationToBeDifferentiated );
      CollectCoEfficient ( DataToBe CoEfficientified );
      PolynomialDivision ( DataToBeDividedByPolynomially );
      CubicSolver ( EquationToBeSolved );
      NumerousTrignometricOperations ( LotsOfData );
      EnableNesting ( PERMITTED );
    }
    

    You'll find the prototypes of the necessary functions in:

    #include "MiscellaneousNumericalCalculationsTooDifficultForMrAverageToUnderstand.H"
    

    Sorry, but I cannot spend any more time on this task. I think there is now sufficient information to complete your urgent assignment.

Children