1 | initial version |
You changed the x, y, z order in the implicit_plot statement.
With
plan = implicit_plot3d(4*x + 5*y -2*z - 18, (x,-10,10),(y,-10,10),(z,-10,10), color="blue", opacity=0.5)
you will get the expected plot. I suppose your y - z - x order causes a swap of axes.