Problem
Given the following equations
x = 3a2 + 2b2
y = 5x2 + 2z
z = b2 + c
USING PYTHON:
• Draw the computational graph for these equations.
• Given a = -2, b = 3, and c = 10 compute the forward pass value for your graph and show each node value in the graph.
• Compute the gradient of the graph with respect to a, b, and c. Show each intermediate node gradients with computed values.
Develop function that implements the backpropagation algorithm and computes the gradients of your graph. Please print each intermediate gradient too.