| 
                  | NP V NP |  
                     | example | "Winnie the Pooh subjugated the unfortunate Pixies." |  
                     | syntax | Agent  V  Patient |  
                     | semantics | path_rel(start(E), Initial_State, Patient, ch_of_state, prep)
                        path_rel(result(E), Result, Patient, ch_of_state, prep)
                        cause(Agent, E)
                        not(subjugated(start(E), Patient))
                        subjugated(result(E), Patient) |  
                  | NP V NP PP.instrument |  
                     | example | "Russia subjugated Mongolia with overwhelming force." |  
                     | syntax | Agent  V  Patient  {with}  Instrument |  
                     | semantics | path_rel(start(E), Initial_State, Patient, ch_of_state, prep)
                        path_rel(result(E), Result, Patient, ch_of_state, prep)
                        cause(Agent, E)
                        not(subjugated(start(E), Patient))
                        subjugated(result(E), Patient)
                        utilize(during(E), Agent, Instrument) |  |