Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

I Am Stuck And Would Appreciate The Help! Coding Is Done In Python. FOR CONTEXT/QUESTIONS PLEASE REFERENCE: https://www.chegg.com/homework-help/questions-and-answers/already-solved-minusopderivative-need-help-figuring-next-step-divideopderivative-python-at-q44812984?trackid=WdsoxSHt Thank you for the help! We have

I Am Stuck And Would Appreciate The Help! Coding Is Done In Python.

image text in transcribed

image text in transcribed

FOR CONTEXT/QUESTIONS PLEASE REFERENCE: https://www.chegg.com/homework-help/questions-and-answers/already-solved-minusopderivative-need-help-figuring-next-step-divideopderivative-python-at-q44812984?trackid=WdsoxSHt

Thank you for the help!

We have not yet implemented a way to take derivatives of Power expressions, that is, expressions involving exponentiation. As we saw during lecture, here's the definition of the derivative of an expression fe with respect to x: a af = f( 8 of If ox ox To translate this into code, we need Logarithm to be one of our operators. Without it, the set of symbolic expressions would not be closed with respect to symbolic differentiation. We'd better add Logarithm to our collection of operators, and define a way to take the derivative of Logarithm expressions, too. Using 1 a log f = f, 2x we define Logarithm to be a subclass of Expr, with op and op_derivative methods, as seen during lecture: [] import math class Logarithm (Expr): def op(self, x): return math.log(x) def op_derivative(self, var, partials): return Multiply Divide(1, self.children[0]), partials[0] Now we have everything we need to take derivatives of Power expressions. For this problem, you will implement the op_derivative method for the Power class, making use of Logarithm. [ ] def power_op_derivative (self, var, partials): "" "Implements derivative for Divide expressions. Should take no more than 5 lines of code to write.""" # YOUR CODE HERE raise NotImplementedError() Power.op_derivative = power_op_derivative ### Tests for Power.op_derivative ## We test your code by taking the derivative of expressions involving exponentiation, ## then evaluating the resulting expression for particular values of the variables # The derivative of x**2 with respect to x is 2x, which is equal to 6 when x = 3 e = v('x') ** 2 assert_almost_equal(e.derivative('x').eval(dict(x=3)), 6) # The derivative of x**2 with respect to y is o e = v('x') ** 2 assert_almost_equal(e.derivative( 'y').eval(dict(x=3)), 0) ### More tests for 'Power.op derivative e = 3 ** V('x') assert_almost_equal(e. derivative('x').eval(dict (x=4)), math.log(3) * (3 ** 4), places=2) e = v('x') ** 2.8 assert_almost_equal(e. derivative('x').eval(dict(x=3)), 2.8 * 3 ** 1.8, places=2) We have not yet implemented a way to take derivatives of Power expressions, that is, expressions involving exponentiation. As we saw during lecture, here's the definition of the derivative of an expression fe with respect to x: a af = f( 8 of If ox ox To translate this into code, we need Logarithm to be one of our operators. Without it, the set of symbolic expressions would not be closed with respect to symbolic differentiation. We'd better add Logarithm to our collection of operators, and define a way to take the derivative of Logarithm expressions, too. Using 1 a log f = f, 2x we define Logarithm to be a subclass of Expr, with op and op_derivative methods, as seen during lecture: [] import math class Logarithm (Expr): def op(self, x): return math.log(x) def op_derivative(self, var, partials): return Multiply Divide(1, self.children[0]), partials[0] Now we have everything we need to take derivatives of Power expressions. For this problem, you will implement the op_derivative method for the Power class, making use of Logarithm. [ ] def power_op_derivative (self, var, partials): "" "Implements derivative for Divide expressions. Should take no more than 5 lines of code to write.""" # YOUR CODE HERE raise NotImplementedError() Power.op_derivative = power_op_derivative ### Tests for Power.op_derivative ## We test your code by taking the derivative of expressions involving exponentiation, ## then evaluating the resulting expression for particular values of the variables # The derivative of x**2 with respect to x is 2x, which is equal to 6 when x = 3 e = v('x') ** 2 assert_almost_equal(e.derivative('x').eval(dict(x=3)), 6) # The derivative of x**2 with respect to y is o e = v('x') ** 2 assert_almost_equal(e.derivative( 'y').eval(dict(x=3)), 0) ### More tests for 'Power.op derivative e = 3 ** V('x') assert_almost_equal(e. derivative('x').eval(dict (x=4)), math.log(3) * (3 ** 4), places=2) e = v('x') ** 2.8 assert_almost_equal(e. derivative('x').eval(dict(x=3)), 2.8 * 3 ** 1.8, places=2)

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Securing SQL Server Protecting Your Database From Attackers

Authors: Denny Cherry

3rd Edition

0128012757, 978-0128012758

More Books

Students also viewed these Databases questions