Ascend
Coding
Ascend
  • 🚀Introduction
  • VEX Robotics
    • 🛠️Building
      • 📏CAD Design
      • 🔧Best Practices
      • 🏎️Drive Trains
        • 🔩Screw Joints
        • 🥊Boxing
        • 🔵Bearing flats
        • 🛤️Fixing Friction
        • 🔥450 RPM on 2.75"
      • 🏍️Motors
      • 🪨Metal
      • Plastic
      • 🎈Pneumatics
      • ➕Additional Mechanisms
        • 🖨️3D Printing
        • ↔️Ratchets
        • 🏹Catapults
        • 🎣Intakes
        • 🏋️Lifts
    • 💻Coding
      • ⚖️Choosing Your Coding Environment
      • 🔴VEXCode Pro
        • 🖥️Getting Started
        • 🚗Drive Code
        • 🚴Coding Motors
        • 🌬️Coding Pneumatics
        • 🎛️Advanced
          • 📡Coding Autonomous
          • 📈Coding PIDs
            • ⬆️Drive PID Tutorial
            • ↩️Turn PID Tutorial
            • 🎸Tuning PIDs
              • 🔢Ziegler-Nichols Method
              • 📊Graphing PIDs
          • 📋Tasks
          • 🚝Advanced Drive Code
      • 🟡PROS
    • 📗Engineering Notebook
      • 📔Formatting
      • ⭐Notebook Walkthrough
      • 💠Decision Matrices
        • 📌Decision Point
      • ➕Additional Resources
    • 🏆Tournaments
      • 🗣️Team Interviews
        • 🪙Interview Tips
        • ⛳Interview Scoring
        • 🤽‍♀️Interview Practice Questions
      • 🤹Skills
      • ℹ️Ranking and Stats
      • 📷Filming Matches
  • Other
    • 🧑‍💼Management
      • 🕑Time Management
      • 👨‍👩‍👧‍👦Team Management
        • 👮Delegation
        • ⚓Optimal Team Size
      • 🖇️Code Management (GitHub)
      • 🚋Resource Management
      • ⁉️Stuck?
    • 🍎Physics
      • ⚙️Torque
      • 😑Stress Forces
    • 👾Extra stuff
      • 📸96504 Gallery
      • ⛑️VEX Team Resources (High Stakes)
      • 🏎️Driving Simulator
Powered by GitBook
On this page

Was this helpful?

  1. VEX Robotics
  2. Engineering Notebook

Decision Matrices

Every choice is a decision matrix

Decision Matrices are the best way to make decisions. Which house to buy? Which classes to take? Which college to attend? All of these choices can be analyzed using decision matrices. In Robotics, decision matrices are primarily used to select the best design from multiple candidates.

A decision matrix has two lists:

  • A list of possible designs along the top row

  • A list of criteria to evaluate the designs along the left column

Each design is given a score from 1-5 for each criteria. Then, the weighted total is calculated; it's the sum of each criteria score multiplied by its weight.

Criteria:
360 RPM Tank Drive
X-Drive
Tank Tread Drive

Maneuverability

Weight: 3

4

5

2

Robustness

Weight: 2

4

3

2

Simplicity

Weight: 1

5

1

3

Weighted totals:

25

22

13

For example, here's how we calculated the weighted total for the 360 RPM Tank Drive in the above matrix:

  • Maneuverability: 3 * 4 = 12

  • Robustness: 2 * 4 = 8

  • Simplicity: 1 * 5 = 5

Weighted total: 12 + 8 + 5 = 25

The other weighted totals are calculated using the same method; the design with the highest weighted total is the best one.

PreviousNotebook WalkthroughNextDecision Point

Last updated 1 year ago

Was this helpful?

📗
💠