Sid M. answered 04/02/21
Studied Computer Science and Engineering at University of Washington
Since each member can vote 1 of 3 ways ('yes', 'no', and 'abstain'), then the number of possibilities for n members is 3 * the number of (n - 1) members. (I.e. each member contributes 3x possibilities.) So, expressed as a (C) recursive function:
int f(int n) {
if (n <= 0) {
return 1;
}
return 3 * f(n - 1);
}