SALARIES — Count above twice the Political Science minimum

Write a query that returns the number of professors who earn more than twice as much as the lowest paid professor in the "Political Science" department.

Table schema
CREATE TABLE SALARIES (Professor_Name TEXT, Department TEXT, Salary INT);
Hint (click to show)
Use a subquery for the minimum.