Answer:
The answer Is C because after further review I have realized C is the best answer choice
Answer:
x=[15:-5:-25]'
Step-by-step explanation:
In order to create a vector you need to use this command:
x = [j:i:k]'
This creates a regularly-spaced vector x using i as the increment between elements. j is the initial value and k is the final value. Besides you need to add the character ' at the end in order to convert the arrow vector in a column vector
Answer:
4
Step-by-step explanation:
There are 4 board members and 3 committee members. You can solve this using combinations:
4C3 = 4!/(3!(4-3)!) = 4!/(3!1!) = 4
You can also solve this by recognizing that since there is one fewer committee spot than there are board members, there will be one possible committee excluding each of the 4 board members.