Problem 2414. Mechanical Advantage of a Gear Train
Calculate the mechanical advantage of a gear train.
The mechanical advantage of a gear couple is given by MA = T_o/T_i where T_x is the number of gear teeth on gear x, o=output, and i=input. For stacked gear couples the overall mechanical advantage is the product of the individual mechanical advantages.
The number of teeth in each gear are given in a 2 x n matrix where n = number of gear couples and the output gears are in the first row.
Example:
T_i1 = 5; T_o1 = 15; T_i2 = 8; T_o2 = 12; T_i3 = 6; T_o3 = 24; gears = [T_o1 T_o2 T_o3 T_i1 T_i2 T_i3]
MA = (15/5)*(12/8)*(24/6) = 3*1.5*4 = 18
Solution Stats
Problem Comments
Solution Comments
Show commentsGroup

Teaching IT - Programmierpraxis
- 25 Problems
- 9 Finishers
- Find the Oldest Person in a Room
- Convert from Fahrenheit to Celsius
- Select every other element of a vector
- Calculate the Number of Sign Changes in a Row Vector (No Element Is Zero)
- Check if number exists in vector
- Generate a vector like 1,2,2,3,3,3,4,4,4,4
- Convert a Cell Array into an Array
- Cell Counting: How Many Draws?
- Doubling elements in a vector
- Symmetry of vector
- Return area of square
- Calculate Amount of Cake Frosting
- Flip the vector from right to left
- Determine the number of odd integers in a vector
- Make an awesome ramp for a tiny motorcycle stuntman
- Cell joiner
- Fix the last element of a cell array
- Oh Zero Zero Zero!!!
- Plot Damped Sinusoid
- frame of the matrix
- Solve a System of Linear Equations
- Replace Nonzero Numbers with 1
- Remove entire row and column in the matrix containing the input values
- Find the maximum number of decimal places in a set of numbers
- subtract central cross
Problem Recent Solvers250
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!