diff --git a/mathgenerator/funcs/quotientofpowersamebase.py b/mathgenerator/funcs/quotientofpowersamebase.py index 8fbceba..0e0fdf6 100644 --- a/mathgenerator/funcs/quotientofpowersamebase.py +++ b/mathgenerator/funcs/quotientofpowersamebase.py @@ -17,5 +17,5 @@ def quotientofpowersamebaseFunc(maxBase=50, maxPower=10): return problem, solution -quotientofpowersamebase = Generator("Quotient of Powers with Same Base", 82, +quotientOfPowerSameBase = Generator("Quotient of Powers with Same Base", 82, "6^4 / 6^2 = 6^(4-2) = 6^2", "36", quotientofpowersamebaseFunc) diff --git a/mathgenerator/funcs/quotientofpowersamepower.py b/mathgenerator/funcs/quotientofpowersamepower.py index 25fd8cd..b7dd980 100644 --- a/mathgenerator/funcs/quotientofpowersamepower.py +++ b/mathgenerator/funcs/quotientofpowersamepower.py @@ -17,5 +17,5 @@ def quotientofpowersamepowerFunc(maxBase=50, maxPower=10): return problem, solution -quotientofpowersamepower = Generator("Quotient of Powers with Same Power", 83, +quotientOfPowerSamePower = Generator("Quotient of Powers with Same Power", 83, "6^4 / 3^4 = (6/3)^4 = 2^4", "16", quotientofpowersamepowerFunc) diff --git a/mathgenerator/mathgen.py b/mathgenerator/mathgen.py index 849e4f2..3fb482c 100644 --- a/mathgenerator/mathgen.py +++ b/mathgenerator/mathgen.py @@ -267,8 +267,8 @@ decimalToHexadeci = Generator("Decimal to Hexadecimal", 79, "Binary of a=", "b", deciToHexaFunc) percentage = Generator("Percentage of a number", 80, "What is a% of b?", "percentage", percentageFunc) -celsiustofahrenheit = Generator("Celsius To Fahrenheit", 81, "(C +(9/5))+32=", "F", celsiustofahrenheitFunc) -quotientofpowersamebase = Generator("Quotient of Powers with Same Base", 82, +celsiusToFahrenheit = Generator("Celsius To Fahrenheit", 81, "(C +(9/5))+32=", "F", celsiustofahrenheitFunc) +quotientOfPowerSameBase = Generator("Quotient of Powers with Same Base", 82, "6^4 / 6^2 = 6^(4-2) = 6^2", "36", quotientofpowersamebaseFunc) -quotientofpowersamepower = Generator("Quotient of Powers with Same Power", 83, +quotientOfPowerSamePower = Generator("Quotient of Powers with Same Power", 83, "6^4 / 3^4 = (6/3)^4 = 2^4", "16", quotientofpowersamepowerFunc)