mark
MML Discourse archived in May, 2026
Interpretting an expression graph
User 009
(x^2 + 2y) + 1\\
x = 3\\
y = -1\\
\\
((3)^2+2(-1))+1\\
(9 -2) + 1\\
7 + 1 = 8\\
Like this?
:thinking: 1
mark
@User 025 Yes - that's really good!
Here's the particularly good part:
- You've correctly determined the algebraic expression that the graph models and
- You've correctly found the result of the computation.
One remaining issue: Definitely make sure that you know how to arrive at the final value via forward propagation. Demonstrating that knowledge on an exam involves filling in all six valueless nodes in the graph. That includes
- the two input nodes x and y,
- The pow(2) and \times nodes one step into the process,
- The + node at the next step, and
- The + node at the final step.