Expression derive(String toVar)

Derives this expression with respect to the given variable.

Source

Expression derive(String toVar) => ((first.derive(toVar) * second)
                                  - (first * second.derive(toVar)))
                                  / (second * second);