There's an error in the formula, should be:
var bool residentEligible = [Are you a Resident?] = "Yes" AND [Age] >= 18;
var bool singleMemberHousehold = [Total Number of Members in the Household] = 1;
var bool payEligible = [Total monthly income for the household for past 30 days (Net income/Take home pay)?] > 1329.17 and
[Total monthly income for the household for past 30 days (Net income/Take home pay)?]<= 4529.17;
var bool eligibile = ($residentEligible && singleMemberHousehold) && $payEligible;
if ($eligibile, "Eligible", "Ineligible")
------------------------------
Neil Schneider
------------------------------