This is a practical example that I had to implement for the realization of a validation rules valid for a system administration profile
IF(
AND(
NOT($Profile.Name == 'System Administrator'),
Date__c < Start_Date__c
),
true,
false
)