Backpropagation is run on the graph below. Its two inputs are a and b:
| Node | Definition |
|---|
| u | ab |
| v | a+b |
| s | u2 |
| r | s/v |
| L | r+2u |
Two features make this graph more than a straight chain:
- u is used twice — once by the squaring node and once directly by the final sum.
- a reaches the rest of the graph by two arrows, one into u and one into v.
The graph is evaluated at
a=2,b=3
What is ∂a∂L at that point? Round your answer to 2 decimal places.