A network stacks three fully connected layers with no activation function anywhere — every layer is a plain affine map:
h1=W1x+b1,h2=W2h1+b2,y=W3h2+b3
with
W1=[1021],W2=[21−11],W3=[201−1]
b1=[1−1],b2=[02],b3=[30]
Because nothing nonlinear sits between the layers, the entire stack is equivalent to a single affine map
y=Mx+c
that produces identical outputs for every input x=(x1, x2).
Exactly one input makes this network output the zero vector, y=(0, 0).
For that input, what is x2? Round your answer to 3 decimal places.