mirror of
https://github.com/DeaDvey/mathgenerator.git
synced 2025-11-28 06:25:23 +01:00
quotient of power fixes
This commit is contained in:
@@ -102,3 +102,5 @@ from .base_conversion import *
|
||||
from .curved_surface_area_cylinder import *
|
||||
from .perimeter_of_polygons import *
|
||||
from .power_of_powers import *
|
||||
from .quotient_of_power_same_base import *
|
||||
from .quotient_of_power_same_power import *
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
from .__init__ import *
|
||||
from ..__init__ import Generator
|
||||
|
||||
|
||||
def quotientOfPowerSameBaseFunc(maxBase=50, maxPower=10):
|
||||
@@ -17,5 +16,5 @@ def quotientOfPowerSameBaseFunc(maxBase=50, maxPower=10):
|
||||
return problem, solution
|
||||
|
||||
|
||||
quotient_of_power_same_base = Generator("Quotient of Powers with Same Base", 82,
|
||||
"6^4 / 6^2 = 6^(4-2) = 6^2", "36", quotientOfPowerSameBaseFunc())
|
||||
quotient_of_power_same_base = Generator("Quotient of Powers with Same Base", 98,
|
||||
"6^4 / 6^2 = 6^(4-2) = 6^2", "36", quotientOfPowerSameBaseFunc)
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
from .__init__ import *
|
||||
from ..__init__ import Generator
|
||||
|
||||
|
||||
def quotientOfPowerSamePowerFunc(maxBase=50, maxPower=10):
|
||||
@@ -17,5 +16,5 @@ def quotientOfPowerSamePowerFunc(maxBase=50, maxPower=10):
|
||||
return problem, solution
|
||||
|
||||
|
||||
quotient_of_power_same_power = Generator("Quotient of Powers with Same Power", 83,
|
||||
"6^4 / 3^4 = (6/3)^4 = 2^4", "16", quotientOfPowerSamePowerFunc())
|
||||
quotient_of_power_same_power = Generator("Quotient of Powers with Same Power", 99,
|
||||
"6^4 / 3^4 = (6/3)^4 = 2^4", "16", quotientOfPowerSamePowerFunc)
|
||||
|
||||
Reference in New Issue
Block a user