No data found for Custom Course Number
No data found for Custom Course Units
Intended Audience: All Engineer interested in the subject
PDH UNITS: 1
This Python script addresses a fundamental problem in combinatorics: calculating the number of distinct permutations and combinations for a multiset (a set with duplicate elements). The trial is to determine how many ways we can select and arrange m items from a collection where individual elements have limited available quantities. A classic example is finding all possible 2-letter words from the letters in "aaabbbbc". The script efficiently solves this by leveraging the mathematical principles of generating functions and the itertools module to iterate through all possible selection scenarios, validating them against the constraints, and applying combinatorial formulas to count the valid outcomes.
Learning Objectives:
At the successful conclusion of this course, you will learn the following knowledge and skills:- Calculate Valid Distributions: For a multiset (e.g., 3 'a's, 4 'b's, 1 'c'), determine all the distinct ways to distribute m selections across the different element types. For example, for m=2, the valid distributions are (2,0,0), (0,2,0), (1,1,0), (1,0,1), (0,1,1).
- Count Combinations:Â The number of valid distributions directly equals the number of unique combinations (where order does not matter). The script counts each valid distribution as one combination.
- Count Permutations: For each valid distribution of elements (e.g., one 'a' and one 'b'), calculate the number of distinct sequences (permutations) that can be formed. This is done using the multinomial coefficient formula: m! / (x1! * x2! * ... * xk!), where x1, x2, ... xk are the counts of each element in the distribution.
- Offer a Solution: Accept user input for the number of distinct elements, their respective frequencies, and the selection size m to solve a wide range of similar problems beyond the initial example.
ACCEPTANCE GUARANTEE
Ncite Engineering Hub engineering courses & live webinars meet NCEES Guidelines for Professional Engineer licenses renewal in all 50 states.
Live Webinars satisfy strict “Live Contact Hour” state mandates.
100% money-back State Board Acceptance Guarantee
Ncite Engineering Hub will refund your payment if the PDH credits you earn are rejected by your state board for any reason.
Ethics Courses

E – 1210 – Ethical Issues in Forensic Engineeringby Mr. J. Paul Guyer, P.E., R.A.

E – 2020 Engineering Ethics — Case Studies in Fraudulent Safety Claimsby Mark P. Rossow, PhD, P.E.

E – 1975 Indiana Statutes and Rules for Professional Engineers 2022-2024 Bienniumby Mark P. Rossow, PhD, P.E.

E – 2043 Florida Laws and Rules for Professional Engineers Biennium Cycle 2023-2025by Mark P. Rossow, PhD, P.E.
Once completed, your order and certificate of completion will be available in your profile when you’re logged in to the site.
Course No E - 3039
PDH Units: 1











