If you add "belongs_to" then you got a bidirectional association. That means you can get a person from the cell and a cell from the person.
There's no real difference, both approaches (with and without "belongs_to") use the same database schema (a person_id field in the cells database table).
To summarize: Do not add "belongs_to" unless you need bidirectional associations between models.