Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

In Python Please : ) *CODE FOR CONTEXT* In Case Pictures Are Hard To Read: class Expr: Abstract class representing expressions def __init__(self, *args): self.children

In Python Please : )

*CODE FOR CONTEXT*

image text in transcribed

image text in transcribed

image text in transcribed

In Case Pictures Are Hard To Read:

class Expr:

"""Abstract class representing expressions"""

def __init__(self, *args):

self.children = list(args)

self.child_values = None

def eval(self, env=None):

"""Evaluates the value of the expression with respect to a given

environment."""

# First, we evaluate the children.

# This is done here using a list comprehension,

# but we also could have written a for loop.

child_values = [c.eval(env=env) if isinstance(c, Expr) else c

for c in self.children]

# Then, we evaluate the expression itself.

if any([isinstance(v, Expr) for v in child_values]):

# Symbolic result.

return self.__class__(*child_values)

else:

# Concrete result.

return self.op(*child_values)

def op(self, *args):

"""The op method computes the value of the expression, given the

numerical value of its subexpressions. It is not implemented in

Expr, but rather, each subclass of Expr should provide its

implementation."""

raise NotImplementedError()

def __repr__(self):

"""Represents the expression as the name of the class,

followed by all the children in parentheses."""

return "%s(%s)" % (self.__class__.__name__,

', '.join(repr(c) for c in self.children))

# Expression constructors

def __add__(self, other):

return Plus(self, other)

def __radd__(self, other):

return Plus(self, other)

def __sub__(self, other):

return Minus(self, other)

def __rsub__(self, other):

return Minus(other, self)

def __mul__(self, other):

return Multiply(self, other)

def __rmul__(self, other):

return Multiply(other, self)

def __truediv__(self, other):

return Divide(self, other)

def __rtruediv__(self, other):

return Divide(other, self)

def __pow__(self, other):

return Power(self, other)

def __rpow__(self, other):

return Power(other, self)

def __neg__(self):

return Negative(self)

class V(Expr):

"""Variable."""

def __init__(self, *args):

"""Variables must be of type string."""

assert len(args) == 1

assert isinstance(args[0], str)

super().__init__(*args)

def eval(self, env=None):

"""If the variable is in the environment, returns the

value of the variable; otherwise, returns the expression."""

if env is not None and self.children[0] in env:

return env[self.children[0]]

else:

return self

class Plus(Expr):

def op(self, x, y):

return x + y

class Minus(Expr):

def op(self, x, y):

return x - y

class Multiply(Expr):

def op(self, x, y):

return x * y

class Divide(Expr):

def op(self, x, y):

return x / y

class Power(Expr):

def op(self, x, y):

return x ** y

class Negative(Expr):

def op(self, x):

return -x

image text in transcribed

image text in transcribed

def expr_derivative(self, var):

"""Computes the derivative of the expression with respect to var."""

partials = [(c.derivative(var) if isinstance(c, Expr) else 0)

for c in self.children]

return self.op_derivative(var, partials).eval()

def expr_op_derivative(self, var, partials):

raise NotImplementedError()

# Extends the existing Expr class with the newly defined methods.

Expr.derivative = expr_derivative

Expr.op_derivative = expr_op_derivative

def variable_derivative(self, var):

return 1 if self.children[0] == var else 0

# Extends the existing V class with the newly defined method.

V.derivative = variable_derivative

def plus_op_derivative(self, var, partials):

return Plus(partials[0], partials[1])

# Extends the existing Plus class...you get the idea.

Plus.op_derivative = plus_op_derivative

def negative_op_derivative(self, var, partials):

return Negative(partials[0])

Negative.op_derivative = negative_op_derivative

def multiply_op_derivative(self, var, partials):

return Plus(

Multiply(partials[0], self.children[1]),

Multiply(partials[1], self.children[0])

)

Multiply.op_derivative = multiply_op_derivative

image text in transcribed

image text in transcribed

def minus_op_derivative(self, var, partials):

"""Implements derivative for Minus expressions."""

# YOUR CODE HERE

raise NotImplementedError()

def divide_op_derivative(self, var, partials):

"""Implements derivative for Divide expressions."""

# YOUR CODE HERE

raise NotImplementedError()

Minus.op_derivative = minus_op_derivative

Divide.op_derivative = divide_op_derivative

#PS. Thank You Very Much!

Elass Expr: ""Abstract class representing expressions"" def _init__(self, *args): self.children = list (args) self.child_values = None def eval(self, env=None): "" "Evaluates the value of the expression with respect to a given environment.""" # First, we evaluate the children. # This is done here using a list comprehension, # but we also could have written a for loop. child_values = [c.eval(env=env) if isinstance(c, Expr) else c for c in self.children] # Then, we evaluate the expression itself. if any ([isinstance(v, Expr) for v in child_values]): # Symbolic result. return self. __class__(*child_values) else: # Concrete result. return self.op(*child_values) def op (self, *args): """The op method computes the value of the expression, given the numerical value of its subexpressions. It is not implemented in Expr, but rather, each subclass of Expr should provide its implementation.""" raise Not ImplementedError() def repr (self): "" "Represents the expression as the name of the class, followed by all the children in parentheses.""" return "%s( %s)" % (self._class___name__, ', '.join(repr(c) for c in self.children)) # Expression constructors def add_(self, other): return Plus(self, other) def radd_(self, other): return Plus(self, other) def __sub_(self, other): return Minus(self, other) def _rsub__(self, other): return Minus (other, self) def mul (self, other): return Multiply(self, other) def rmul_(self, other): return Multiply(other, self) def truediv_(self, other): return Divide (self, other) def rtruediv_(self, other): return Divide (other, self) def pow__(self, other): return Power(self, other) def_rpow__(self, other): return Power (other, self) def _neg__(self): return Negative (self) class V(Expr): """Variable.""" def __init_(self, *args) : """Variables must be of type string.""" assert len(args) == 1 assert isinstance(args[0), str) super() . __init__(*args) def eval(self, env=None): """If the variable is in the environment, returns the value of the variable; otherwise, returns the expression.""" if eny is not None and self.children[0] in eny: return env[self.children[0]] else: return self class Plus (Expr): def op (self, x, y): return x + y class Minus (Expr): def op (self, x, y): return x - y class Multiply(Expr): def op(self, x, y): return x * Y class Divide (Expr): def op (self, x, y): return x / y class Power (Expr): def op (self, x, y): return x ** y class Negative (Expr): def op (self, x): return -x During lecture, we wrote a method derivative such that, for an expression e, the method call e.derivative('x') returns the derivative of the expression with respect to v('x'). To get the derivative of a composite expression with respect to a variable, we need to get the derivative of the subexpressions with respect to that same variable. Thus, we divide the work as follows: The method derivative first calls the method derivative for all the subexpressions, that is, the children of the expression, accumulating the results into a list partials (so called because these are partial derivatives). Then, the method derivative calls op derivative. This method is an abstract method of Expr, and is implemented in each subclass (v, Plus, Minus, and so on). The method op derivative will compute the derivative of the expression, according to the operator type. We defined the derivative method for the Expr class, and we began implementing op_derivative for each operator, but during lecture we only wrote op_derivative for some of the subclasses of Expr. In particular, we implemented it for the v, Plus, and Multiply subclasses of Expr. Below is the code that defines the derivative methods for the Expr class and the v class, and defines the op_derivative methods for the Plus, Negative, and Multiply subclasses of Expr. How does it work? partials is a list that contains the partial derivatives of every subexpression of an expression, computed in the Expr class. The op_derivative methods for each operator all combine the elements of partials to construct the partial derivative in whichever way is appropriate for that operator. [] def expr_derivative (self, var): "" "Computes the derivative of the expression with respect to var.""" partials = [(c.derivative (var) if isinstance(c, Expr) else 0) for c in self.children] return self.op_derivative (var, partials).eval(). def expr_op_derivative(self, var, partials): raise Not ImplementedError() # Extends the existing Expr class with the newly defined methods. Expr. derivative = expr_derivative Expr.op_derivative = expr_op_derivative def variable_derivative (self, var): return 1 if self.children[0] == var else 0 # Extends the existing v class with the newly defined method. V.derivative = variable derivative def plus_op_derivative(self, var, partials): return Plus (partials[0], partials[1]) # Extends the existing Plus class...you get the idea. Plus.op_derivative = plus_op_derivative def negative_op_derivative (self, var, partials): return Negative (partials[0]). Negative.op_derivative = negative_op_derivative def multiply_op_derivative (self, var, partials): return Plus Multiply(partials[0], self.children[1]), Multiply (partials[1], self.children[0]). Multiply.op_derivative = multiply_op_derivative Let's play with these definitions a little. We can now take derivatives of expressions that involve addition, variables, negation, and multiplication. For instance, we can take the derivative of 5 + y with respect to y, which should be 1. [ ] e = 5 + VC'y') e.derivative('y') However, we are still missing op derivative methods for several classes. For this problem, you will implement the missing op_derivative methods for the Minus and Divide classes, making it possible for us to take the derivative of expressions that involve subtraction and division. You should make use of the following definitions (which we saw in lecture, as well as in the previous homework): op (f 8) = of _ og axle) = - ) = 8*** - f xong 32 Hints: Minus.op_derivative is very similar to Plus.op_derivative and can be implemented in one line of code. For Divide.op_derivative, keep in mind that self is the Divide expression you are dealing with, and that its subexpressions can be found in the list self.children. For instance, for the expression Divide (5, V('x')), children[0] is 5 and children[1] is VI'x'). You can find the partial derivatives of each of the children in the partials list. [ ] def minus_op_derivative (self, var, partials): "" "Implements derivative for Minus expressions."" # YOUR CODE HERE raise NotImplementedError(). def divide_op_derivative(self, var, partials): """Implements derivative for Divide expressions. # YOUR CODE HERE raise NotImplementedError(). Minus.op_derivative = minus_op_derivative Divide.op_derivative = divide_op_derivative [] ### Feel free to use this cell to write your own tests. ### You will not be graded on what you write here. I ### Tests for Minus.op derivative e = v('x') - 4 assert_equal(e. derivative('x'), 1) e = 4 - V('x') assert equal(e. derivative('x'), -1) [] ### Tests for Divide.op_derivative e = v('x') / v('y'). assert_equal(e. derivative('x').eval (dict(x=3, y=2)), 0.5) assert equal(e. derivative('y').eval(dict(x=3, y=2)), -3 / 4) Elass Expr: ""Abstract class representing expressions"" def _init__(self, *args): self.children = list (args) self.child_values = None def eval(self, env=None): "" "Evaluates the value of the expression with respect to a given environment.""" # First, we evaluate the children. # This is done here using a list comprehension, # but we also could have written a for loop. child_values = [c.eval(env=env) if isinstance(c, Expr) else c for c in self.children] # Then, we evaluate the expression itself. if any ([isinstance(v, Expr) for v in child_values]): # Symbolic result. return self. __class__(*child_values) else: # Concrete result. return self.op(*child_values) def op (self, *args): """The op method computes the value of the expression, given the numerical value of its subexpressions. It is not implemented in Expr, but rather, each subclass of Expr should provide its implementation.""" raise Not ImplementedError() def repr (self): "" "Represents the expression as the name of the class, followed by all the children in parentheses.""" return "%s( %s)" % (self._class___name__, ', '.join(repr(c) for c in self.children)) # Expression constructors def add_(self, other): return Plus(self, other) def radd_(self, other): return Plus(self, other) def __sub_(self, other): return Minus(self, other) def _rsub__(self, other): return Minus (other, self) def mul (self, other): return Multiply(self, other) def rmul_(self, other): return Multiply(other, self) def truediv_(self, other): return Divide (self, other) def rtruediv_(self, other): return Divide (other, self) def pow__(self, other): return Power(self, other) def_rpow__(self, other): return Power (other, self) def _neg__(self): return Negative (self) class V(Expr): """Variable.""" def __init_(self, *args) : """Variables must be of type string.""" assert len(args) == 1 assert isinstance(args[0), str) super() . __init__(*args) def eval(self, env=None): """If the variable is in the environment, returns the value of the variable; otherwise, returns the expression.""" if eny is not None and self.children[0] in eny: return env[self.children[0]] else: return self class Plus (Expr): def op (self, x, y): return x + y class Minus (Expr): def op (self, x, y): return x - y class Multiply(Expr): def op(self, x, y): return x * Y class Divide (Expr): def op (self, x, y): return x / y class Power (Expr): def op (self, x, y): return x ** y class Negative (Expr): def op (self, x): return -x During lecture, we wrote a method derivative such that, for an expression e, the method call e.derivative('x') returns the derivative of the expression with respect to v('x'). To get the derivative of a composite expression with respect to a variable, we need to get the derivative of the subexpressions with respect to that same variable. Thus, we divide the work as follows: The method derivative first calls the method derivative for all the subexpressions, that is, the children of the expression, accumulating the results into a list partials (so called because these are partial derivatives). Then, the method derivative calls op derivative. This method is an abstract method of Expr, and is implemented in each subclass (v, Plus, Minus, and so on). The method op derivative will compute the derivative of the expression, according to the operator type. We defined the derivative method for the Expr class, and we began implementing op_derivative for each operator, but during lecture we only wrote op_derivative for some of the subclasses of Expr. In particular, we implemented it for the v, Plus, and Multiply subclasses of Expr. Below is the code that defines the derivative methods for the Expr class and the v class, and defines the op_derivative methods for the Plus, Negative, and Multiply subclasses of Expr. How does it work? partials is a list that contains the partial derivatives of every subexpression of an expression, computed in the Expr class. The op_derivative methods for each operator all combine the elements of partials to construct the partial derivative in whichever way is appropriate for that operator. [] def expr_derivative (self, var): "" "Computes the derivative of the expression with respect to var.""" partials = [(c.derivative (var) if isinstance(c, Expr) else 0) for c in self.children] return self.op_derivative (var, partials).eval(). def expr_op_derivative(self, var, partials): raise Not ImplementedError() # Extends the existing Expr class with the newly defined methods. Expr. derivative = expr_derivative Expr.op_derivative = expr_op_derivative def variable_derivative (self, var): return 1 if self.children[0] == var else 0 # Extends the existing v class with the newly defined method. V.derivative = variable derivative def plus_op_derivative(self, var, partials): return Plus (partials[0], partials[1]) # Extends the existing Plus class...you get the idea. Plus.op_derivative = plus_op_derivative def negative_op_derivative (self, var, partials): return Negative (partials[0]). Negative.op_derivative = negative_op_derivative def multiply_op_derivative (self, var, partials): return Plus Multiply(partials[0], self.children[1]), Multiply (partials[1], self.children[0]). Multiply.op_derivative = multiply_op_derivative Let's play with these definitions a little. We can now take derivatives of expressions that involve addition, variables, negation, and multiplication. For instance, we can take the derivative of 5 + y with respect to y, which should be 1. [ ] e = 5 + VC'y') e.derivative('y') However, we are still missing op derivative methods for several classes. For this problem, you will implement the missing op_derivative methods for the Minus and Divide classes, making it possible for us to take the derivative of expressions that involve subtraction and division. You should make use of the following definitions (which we saw in lecture, as well as in the previous homework): op (f 8) = of _ og axle) = - ) = 8*** - f xong 32 Hints: Minus.op_derivative is very similar to Plus.op_derivative and can be implemented in one line of code. For Divide.op_derivative, keep in mind that self is the Divide expression you are dealing with, and that its subexpressions can be found in the list self.children. For instance, for the expression Divide (5, V('x')), children[0] is 5 and children[1] is VI'x'). You can find the partial derivatives of each of the children in the partials list. [ ] def minus_op_derivative (self, var, partials): "" "Implements derivative for Minus expressions."" # YOUR CODE HERE raise NotImplementedError(). def divide_op_derivative(self, var, partials): """Implements derivative for Divide expressions. # YOUR CODE HERE raise NotImplementedError(). Minus.op_derivative = minus_op_derivative Divide.op_derivative = divide_op_derivative [] ### Feel free to use this cell to write your own tests. ### You will not be graded on what you write here. I ### Tests for Minus.op derivative e = v('x') - 4 assert_equal(e. derivative('x'), 1) e = 4 - V('x') assert equal(e. derivative('x'), -1) [] ### Tests for Divide.op_derivative e = v('x') / v('y'). assert_equal(e. derivative('x').eval (dict(x=3, y=2)), 0.5) assert equal(e. derivative('y').eval(dict(x=3, y=2)), -3 / 4)

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

Linked Data A Geographic Perspective

Authors: Glen Hart, Catherine Dolbear

1st Edition

1000218910, 9781000218916

More Books

Students also viewed these Databases questions

Question

When would adjusting standards within a period be reasonable?

Answered: 1 week ago

Question

Which of the following might be part of a back - end database?

Answered: 1 week ago

Question

Discuss the effectiveness of a national infrastructure for HRD

Answered: 1 week ago