The document discusses the actor model in computer science. It states that the actor model is a mathematical model of concurrent computation that treats "actors" as the basic units. An actor can make local decisions, create more actors, send messages to other actors, and determine how to respond to received messages. Actors can modify their own private state but can only interact with other actors through message passing to avoid locks.