Answer and Explanation:
I'm assuming that you have two databases (since no CAP database is provided in the question) Agent, Customer.
Agent having the attributes agent_id, city, customerid etc..
Customer having customerid, customer_name etc.
Relational Algebra statement:
π customerid(Agent)(customerid =c002(Customer))
city
Query:
select city from Agent where customerid in(select customerid from Customer where customer_name="c002);