diff --git a/docs/mathgenerator/_gen_list.html b/docs/mathgenerator/_gen_list.html index bd54949..0fe40f6 100644 --- a/docs/mathgenerator/_gen_list.html +++ b/docs/mathgenerator/_gen_list.html @@ -201,7 +201,8 @@ 126 ("is_composite", "basic_math"), 127 ("complementary_and_supplementary_angle", "geometry"), 128 ("simplify_square_root", "basic_math"), -129] +129 ("line_equation_from_2_points", "algebra"), +130] diff --git a/docs/mathgenerator/algebra.html b/docs/mathgenerator/algebra.html index 839bafd..4a14ddd 100644 --- a/docs/mathgenerator/algebra.html +++ b/docs/mathgenerator/algebra.html @@ -85,6 +85,9 @@
491def line_equation_from_2_points(max_val=20): +492 r"""Equation of Line from Two Points +493 +494 | Ex. Problem | Ex. Solution | +495 | --- | --- | +496 | Find the equation of the line passing through the points $(-19,-8)$ and $(-2,0)$. | $y=\frac{8}{17}x+\frac{16}{17}$ | +497 """ +498 x1 = random.randint(-max_val, max_val) +499 x2 = random.randint(-max_val, max_val) +500 if x1 == x2: +501 return line_equation_from_2_points(max_val=max_val) +502 y1 = random.randint(-max_val, max_val) +503 y2 = random.randint(-max_val, max_val) +504 m1 = (y2 - y1) // math.gcd(y2 - y1, x2 - x1) +505 m2 = (x2 - x1) // math.gcd(y2 - y1, x2 - x1) +506 c1 = (y1 * (x2 - x1) - (y2 - y1) * x1) // math.gcd(y1 * (x2 - x1) - (y2 - y1) * x1, (x2 - x1)) +507 c2 = (x2 - x1) // math.gcd(y1 * (x2 - x1) - (y2 - y1) * x1, (x2 - x1)) +508 c = rf"{'+' if c1 >= 0 else '-'}\frac{{{abs(c1)}}}{{{c2}}}" if c1 != 0 else "" +509 if c2 < 0: +510 c2 = -c2 +511 c1 = -c1 +512 c = rf"{'+' if c1 >= 0 else '-'}\frac{{{abs(c1)}}}{{{c2}}}" +513 if c2 == 1: +514 c = f"{c1:+}" +515 +516 problem = f'Find the equation of the line passing through the points $({x1},{y1})$ and $({x2},{y2})$.' +517 +518 if m1 == 0: +519 return problem, f"$y={c}$" +520 if m2 < 0: +521 m1 = -m1 +522 m2 = -m2 +523 if m2 == 1: +524 if m1 == 1: +525 return problem, f"$y=x{c}$" +526 if m1 == -1: +527 return problem, f"$y=-x{c}$" +528 return problem, f"y={m1}x{c}" +529 +530 return problem, rf"$y=\frac{{{m1}}}{{{m2}}}x{c}$" +
Equation of Line from Two Points
+ +| Ex. Problem | +Ex. Solution | +
|---|---|
| Find the equation of the line passing through the points $(-19,-8)$ and $(-2,0)$. | +$y=\frac{8}{17}x+\frac{16}{17}$ | +
491def log(max_base=3, max_val=8): -492 r"""Logarithm -493 -494 | Ex. Problem | Ex. Solution | -495 | --- | --- | -496 | $log_{3}(243)=$ | $5$ | -497 """ -498 a = random.randint(1, max_val) -499 b = random.randint(2, max_base) -500 c = pow(b, a) -501 -502 problem = f'$log_{{{b}}}({c})=$' -503 solution = f'${a}$' -504 return problem, solution +@@ -1759,35 +1878,35 @@ Given a quadratic equation in the form x^2 + bx + c, factor it into it's roots (533def log(max_base=3, max_val=8): +534 r"""Logarithm +535 +536 | Ex. Problem | Ex. Solution | +537 | --- | --- | +538 | $log_{3}(243)=$ | $5$ | +539 """ +540 a = random.randint(1, max_val) +541 b = random.randint(2, max_base) +542 c = pow(b, a) +543 +544 problem = f'$log_{{{b}}}({c})=$' +545 solution = f'${a}$' +546 return problem, solution
507def matrix_multiplication(max_val=100, max_dim=10): -508 r"""Multiply Two Matrices -509 -510 | Ex. Problem | Ex. Solution | -511 | --- | --- | -512 | Multiply $\begin{bmatrix} 15 & 72 \\\ 64 & -20 \\\ 18 & 59 \\\ -21 & -55 \\\ 20 & -12 \\\ -75 & -42 \\\ 47 & 89 \\\ -53 & 27 \\\ -56 & 44 \end{bmatrix}$ and $\begin{bmatrix} 49 & -2 & 68 & -28 \\\ 49 & 6 & 83 & 42 \end{bmatrix}$ | $\begin{bmatrix} 4263 & 402 & 6996 & 2604 \\\ 2156 & -248 & 2692 & -2632 \\\ 3773 & 318 & 6121 & 1974 \\\ -3724 & -288 & -5993 & -1722 \\\ 392 & -112 & 364 & -1064 \\\ -5733 & -102 & -8586 & 336 \\\ 6664 & 440 & 10583 & 2422 \\\ -1274 & 268 & -1363 & 2618 \\\ -588 & 376 & -156 & 3416 \end{bmatrix}$ | -513 """ -514 m = random.randint(2, max_dim) -515 n = random.randint(2, max_dim) -516 k = random.randint(2, max_dim) -517 -518 # generate matrices a and b -519 a = [[random.randint(-max_val, max_val) for _ in range(n)] -520 for _ in range(m)] -521 b = [[random.randint(-max_val, max_val) for _ in range(k)] -522 for _ in range(n)] -523 -524 res = [] -525 for r in range(m): -526 res.append([]) -527 for c in range(k): -528 temp = 0 -529 for t in range(n): -530 temp += a[r][t] * b[t][c] -531 res[r].append(temp) -532 -533 problem = f"Multiply ${bmatrix(a)}$ and ${bmatrix(b)}$" -534 solution = f'${bmatrix(res)}$' -535 return problem, solution +@@ -1822,23 +1941,23 @@ Given a quadratic equation in the form x^2 + bx + c, factor it into it's roots (549def matrix_multiplication(max_val=100, max_dim=10): +550 r"""Multiply Two Matrices +551 +552 | Ex. Problem | Ex. Solution | +553 | --- | --- | +554 | Multiply $\begin{bmatrix} 15 & 72 \\\ 64 & -20 \\\ 18 & 59 \\\ -21 & -55 \\\ 20 & -12 \\\ -75 & -42 \\\ 47 & 89 \\\ -53 & 27 \\\ -56 & 44 \end{bmatrix}$ and $\begin{bmatrix} 49 & -2 & 68 & -28 \\\ 49 & 6 & 83 & 42 \end{bmatrix}$ | $\begin{bmatrix} 4263 & 402 & 6996 & 2604 \\\ 2156 & -248 & 2692 & -2632 \\\ 3773 & 318 & 6121 & 1974 \\\ -3724 & -288 & -5993 & -1722 \\\ 392 & -112 & 364 & -1064 \\\ -5733 & -102 & -8586 & 336 \\\ 6664 & 440 & 10583 & 2422 \\\ -1274 & 268 & -1363 & 2618 \\\ -588 & 376 & -156 & 3416 \end{bmatrix}$ | +555 """ +556 m = random.randint(2, max_dim) +557 n = random.randint(2, max_dim) +558 k = random.randint(2, max_dim) +559 +560 # generate matrices a and b +561 a = [[random.randint(-max_val, max_val) for _ in range(n)] +562 for _ in range(m)] +563 b = [[random.randint(-max_val, max_val) for _ in range(k)] +564 for _ in range(n)] +565 +566 res = [] +567 for r in range(m): +568 res.append([]) +569 for c in range(k): +570 temp = 0 +571 for t in range(n): +572 temp += a[r][t] * b[t][c] +573 res[r].append(temp) +574 +575 problem = f"Multiply ${bmatrix(a)}$ and ${bmatrix(b)}$" +576 solution = f'${bmatrix(res)}$' +577 return problem, solution
538def midpoint_of_two_points(max_value=20): -539 r"""Midpoint of two points -540 -541 | Ex. Problem | Ex. Solution | -542 | --- | --- | -543 | The midpoint of $(-8,10)$ and $(18,0) = $ | $(5.0,5.0)$ | -544 """ -545 x1 = random.randint(-20, max_value) -546 y1 = random.randint(-20, max_value) -547 x2 = random.randint(-20, max_value) -548 y2 = random.randint(-20, max_value) -549 xm = (x1 + x2) / 2 -550 ym = (y1 + y2) / 2 -551 -552 problem = f"The midpoint of $({x1},{y1})$ and $({x2},{y2}) = $" -553 solution = f"$({xm},{ym})$" -554 return problem, solution +@@ -1873,23 +1992,23 @@ Given a quadratic equation in the form x^2 + bx + c, factor it into it's roots (580def midpoint_of_two_points(max_value=20): +581 r"""Midpoint of two points +582 +583 | Ex. Problem | Ex. Solution | +584 | --- | --- | +585 | The midpoint of $(-8,10)$ and $(18,0) = $ | $(5.0,5.0)$ | +586 """ +587 x1 = random.randint(-20, max_value) +588 y1 = random.randint(-20, max_value) +589 x2 = random.randint(-20, max_value) +590 y2 = random.randint(-20, max_value) +591 xm = (x1 + x2) / 2 +592 ym = (y1 + y2) / 2 +593 +594 problem = f"The midpoint of $({x1},{y1})$ and $({x2},{y2}) = $" +595 solution = f"$({xm},{ym})$" +596 return problem, solution
557def multiply_complex_numbers(min_real_imaginary_num=-20, -558 max_real_imaginary_num=20): -559 r"""Multiplication of 2 complex numbers -560 -561 | Ex. Problem | Ex. Solution | -562 | --- | --- | -563 | $(14+18j) * (14+15j) = $ | $(-74+462j)$ | -564 """ -565 num1 = complex(random.randint(min_real_imaginary_num, max_real_imaginary_num), -566 random.randint(min_real_imaginary_num, max_real_imaginary_num)) -567 num2 = complex(random.randint(min_real_imaginary_num, max_real_imaginary_num), -568 random.randint(min_real_imaginary_num, max_real_imaginary_num)) -569 product = num1 * num2 -570 -571 problem = f"${num1} * {num2} = $" -572 solution = f'${product}$' -573 return problem, solution +@@ -1924,30 +2043,30 @@ Given a quadratic equation in the form x^2 + bx + c, factor it into it's roots (599def multiply_complex_numbers(min_real_imaginary_num=-20, +600 max_real_imaginary_num=20): +601 r"""Multiplication of 2 complex numbers +602 +603 | Ex. Problem | Ex. Solution | +604 | --- | --- | +605 | $(14+18j) * (14+15j) = $ | $(-74+462j)$ | +606 """ +607 num1 = complex(random.randint(min_real_imaginary_num, max_real_imaginary_num), +608 random.randint(min_real_imaginary_num, max_real_imaginary_num)) +609 num2 = complex(random.randint(min_real_imaginary_num, max_real_imaginary_num), +610 random.randint(min_real_imaginary_num, max_real_imaginary_num)) +611 product = num1 * num2 +612 +613 problem = f"${num1} * {num2} = $" +614 solution = f'${product}$' +615 return problem, solution
576def multiply_int_to_22_matrix(max_matrix_val=10, max_res=100): -577 r"""Multiply Integer to 2x2 Matrix -578 -579 | Ex. Problem | Ex. Solution | -580 | --- | --- | -581 | $5 * \begin{bmatrix} 1 & 0 \\\ 2 & 9 \end{bmatrix} =$ | $\begin{bmatrix} 5 & 0 \\\ 10 & 45 \end{bmatrix}$ | -582 """ -583 a = random.randint(0, max_matrix_val) -584 b = random.randint(0, max_matrix_val) -585 c = random.randint(0, max_matrix_val) -586 d = random.randint(0, max_matrix_val) -587 -588 constant = random.randint(0, int(max_res / max(a, b, c, d))) -589 -590 a1 = a * constant -591 b1 = b * constant -592 c1 = c * constant -593 d1 = d * constant -594 lst = [[a, b], [c, d]] -595 lst1 = [[a1, b1], [c1, d1]] -596 -597 problem = f'${constant} * {bmatrix(lst)} =$' -598 solution = f'${bmatrix(lst1)}$' -599 return problem, solution +@@ -1982,23 +2101,23 @@ Given a quadratic equation in the form x^2 + bx + c, factor it into it's roots (618def multiply_int_to_22_matrix(max_matrix_val=10, max_res=100): +619 r"""Multiply Integer to 2x2 Matrix +620 +621 | Ex. Problem | Ex. Solution | +622 | --- | --- | +623 | $5 * \begin{bmatrix} 1 & 0 \\\ 2 & 9 \end{bmatrix} =$ | $\begin{bmatrix} 5 & 0 \\\ 10 & 45 \end{bmatrix}$ | +624 """ +625 a = random.randint(0, max_matrix_val) +626 b = random.randint(0, max_matrix_val) +627 c = random.randint(0, max_matrix_val) +628 d = random.randint(0, max_matrix_val) +629 +630 constant = random.randint(0, int(max_res / max(a, b, c, d))) +631 +632 a1 = a * constant +633 b1 = b * constant +634 c1 = c * constant +635 d1 = d * constant +636 lst = [[a, b], [c, d]] +637 lst1 = [[a1, b1], [c1, d1]] +638 +639 problem = f'${constant} * {bmatrix(lst)} =$' +640 solution = f'${bmatrix(lst1)}$' +641 return problem, solution
602def quadratic_equation(max_val=100): -603 r"""Quadratic Equation -604 -605 | Ex. Problem | Ex. Solution | -606 | --- | --- | -607 | What are the zeros of the quadratic equation $22x^2+137x+25=0$ | ${-0.19, -6.04}$ | -608 """ -609 a = random.randint(1, max_val) -610 c = random.randint(1, max_val) -611 b = random.randint( -612 round(math.sqrt(4 * a * c)) + 1, round(math.sqrt(4 * max_val * max_val))) -613 D = math.sqrt(b * b - 4 * a * c) -614 res = {round((-b + D) / (2 * a), 2), round((-b - D) / (2 * a), 2)} -615 -616 problem = f"What are the zeros of the quadratic equation ${a}x^2+{b}x+{c}=0$" -617 solution = f'${res}$' -618 return problem, solution +@@ -2033,23 +2152,23 @@ Given a quadratic equation in the form x^2 + bx + c, factor it into it's roots (644def quadratic_equation(max_val=100): +645 r"""Quadratic Equation +646 +647 | Ex. Problem | Ex. Solution | +648 | --- | --- | +649 | What are the zeros of the quadratic equation $22x^2+137x+25=0$ | ${-0.19, -6.04}$ | +650 """ +651 a = random.randint(1, max_val) +652 c = random.randint(1, max_val) +653 b = random.randint( +654 round(math.sqrt(4 * a * c)) + 1, round(math.sqrt(4 * max_val * max_val))) +655 D = math.sqrt(b * b - 4 * a * c) +656 res = {round((-b + D) / (2 * a), 2), round((-b - D) / (2 * a), 2)} +657 +658 problem = f"What are the zeros of the quadratic equation ${a}x^2+{b}x+{c}=0$" +659 solution = f'${res}$' +660 return problem, solution
621def simple_interest(max_principle=10000, -622 max_rate=10, -623 max_time=10): -624 r"""Simple Interest -625 -626 | Ex. Problem | Ex. Solution | -627 | --- | --- | -628 | Simple interest for a principle amount of $7217$ dollars, $3$% rate of interest and for a time period of $10$ years is $=$ | $2165.1$ | -629 """ -630 p = random.randint(1000, max_principle) -631 r = random.randint(1, max_rate) -632 t = random.randint(1, max_time) -633 s = round((p * r * t) / 100, 2) -634 -635 problem = f"Simple interest for a principle amount of ${p}$ dollars, ${r}$% rate of interest and for a time period of ${t}$ years is $=$ " -636 solution = f'${s}$' -637 return problem, solution +@@ -2084,58 +2203,58 @@ Given a quadratic equation in the form x^2 + bx + c, factor it into it's roots (663def simple_interest(max_principle=10000, +664 max_rate=10, +665 max_time=10): +666 r"""Simple Interest +667 +668 | Ex. Problem | Ex. Solution | +669 | --- | --- | +670 | Simple interest for a principle amount of $7217$ dollars, $3$% rate of interest and for a time period of $10$ years is $=$ | $2165.1$ | +671 """ +672 p = random.randint(1000, max_principle) +673 r = random.randint(1, max_rate) +674 t = random.randint(1, max_time) +675 s = round((p * r * t) / 100, 2) +676 +677 problem = f"Simple interest for a principle amount of ${p}$ dollars, ${r}$% rate of interest and for a time period of ${t}$ years is $=$ " +678 solution = f'${s}$' +679 return problem, solution
640def system_of_equations(range_x=10, -641 range_y=10, -642 coeff_mult_range=10): -643 r"""Solve a System of Equations in R^2 -644 -645 | Ex. Problem | Ex. Solution | -646 | --- | --- | -647 | Given $-x + 5y = -28$ and $9x + 2y = 64$, solve for $x$ and $y$. | $x = 8$, $y = -4$ | -648 """ -649 # Generate solution point first -650 x = random.randint(-range_x, range_x) -651 y = random.randint(-range_y, range_y) -652 # Start from reduced echelon form (coeffs 1) -653 c1 = [1, 0, x] -654 c2 = [0, 1, y] -655 -656 def randNonZero(): -657 return random.choice( -658 [i for i in range(-coeff_mult_range, coeff_mult_range) if i != 0]) -659 -660 # Add random (non-zero) multiple of equations (rows) to each other -661 c1_mult = randNonZero() -662 c2_mult = randNonZero() -663 new_c1 = [c1[i] + c1_mult * c2[i] for i in range(len(c1))] -664 new_c2 = [c2[i] + c2_mult * c1[i] for i in range(len(c2))] -665 # For extra randomness, now add random (non-zero) multiples of original rows -666 # to themselves -667 c1_mult = randNonZero() -668 c2_mult = randNonZero() -669 new_c1 = [new_c1[i] + c1_mult * c1[i] for i in range(len(c1))] -670 new_c2 = [new_c2[i] + c2_mult * c2[i] for i in range(len(c2))] -671 -672 def coeffToFuncString(coeffs): -673 # lots of edge cases for perfect formatting! -674 x_sign = '-' if coeffs[0] < 0 else '' -675 # No redundant 1s -676 x_coeff = str(abs(coeffs[0])) if abs(coeffs[0]) != 1 else '' -677 # If x coeff is 0, dont include x -678 x_str = f'{x_sign}{x_coeff}x' if coeffs[0] != 0 else '' -679 # if x isn't included and y is positive, dont include operator -680 op = ' - ' if coeffs[1] < 0 else (' + ' if x_str != '' else '') -681 # No redundant 1s -682 y_coeff = abs(coeffs[1]) if abs(coeffs[1]) != 1 else '' -683 # Don't include if 0, unless x is also 0 (probably never happens) -684 y_str = f'{y_coeff}y' if coeffs[1] != 0 else ( -685 '' if x_str != '' else '0') -686 return f'{x_str}{op}{y_str} = {coeffs[2]}' -687 -688 problem = f"Given ${coeffToFuncString(new_c1)}$ and ${coeffToFuncString(new_c2)}$, solve for $x$ and $y$." -689 solution = f"$x = {x}$, $y = {y}$" -690 return problem, solution -691 # Add random (non-zero) multiple of equations to each other +@@ -2170,23 +2289,23 @@ Given a quadratic equation in the form x^2 + bx + c, factor it into it's roots (682def system_of_equations(range_x=10, +683 range_y=10, +684 coeff_mult_range=10): +685 r"""Solve a System of Equations in R^2 +686 +687 | Ex. Problem | Ex. Solution | +688 | --- | --- | +689 | Given $-x + 5y = -28$ and $9x + 2y = 64$, solve for $x$ and $y$. | $x = 8$, $y = -4$ | +690 """ +691 # Generate solution point first +692 x = random.randint(-range_x, range_x) +693 y = random.randint(-range_y, range_y) +694 # Start from reduced echelon form (coeffs 1) +695 c1 = [1, 0, x] +696 c2 = [0, 1, y] +697 +698 def randNonZero(): +699 return random.choice( +700 [i for i in range(-coeff_mult_range, coeff_mult_range) if i != 0]) +701 +702 # Add random (non-zero) multiple of equations (rows) to each other +703 c1_mult = randNonZero() +704 c2_mult = randNonZero() +705 new_c1 = [c1[i] + c1_mult * c2[i] for i in range(len(c1))] +706 new_c2 = [c2[i] + c2_mult * c1[i] for i in range(len(c2))] +707 # For extra randomness, now add random (non-zero) multiples of original rows +708 # to themselves +709 c1_mult = randNonZero() +710 c2_mult = randNonZero() +711 new_c1 = [new_c1[i] + c1_mult * c1[i] for i in range(len(c1))] +712 new_c2 = [new_c2[i] + c2_mult * c2[i] for i in range(len(c2))] +713 +714 def coeffToFuncString(coeffs): +715 # lots of edge cases for perfect formatting! +716 x_sign = '-' if coeffs[0] < 0 else '' +717 # No redundant 1s +718 x_coeff = str(abs(coeffs[0])) if abs(coeffs[0]) != 1 else '' +719 # If x coeff is 0, dont include x +720 x_str = f'{x_sign}{x_coeff}x' if coeffs[0] != 0 else '' +721 # if x isn't included and y is positive, dont include operator +722 op = ' - ' if coeffs[1] < 0 else (' + ' if x_str != '' else '') +723 # No redundant 1s +724 y_coeff = abs(coeffs[1]) if abs(coeffs[1]) != 1 else '' +725 # Don't include if 0, unless x is also 0 (probably never happens) +726 y_str = f'{y_coeff}y' if coeffs[1] != 0 else ( +727 '' if x_str != '' else '0') +728 return f'{x_str}{op}{y_str} = {coeffs[2]}' +729 +730 problem = f"Given ${coeffToFuncString(new_c1)}$ and ${coeffToFuncString(new_c2)}$, solve for $x$ and $y$." +731 solution = f"$x = {x}$, $y = {y}$" +732 return problem, solution +733 # Add random (non-zero) multiple of equations to each other
694def vector_cross(min_val=-20, max_val=20): -695 r"""Cross product of 2 vectors -696 -697 | Ex. Problem | Ex. Solution | -698 | --- | --- | -699 | $[-1, -4, 10] \times [-11, 1, -16] = $ | $[54, -126, -45]$ | -700 """ -701 a = [random.randint(min_val, max_val) for _ in range(3)] -702 b = [random.randint(min_val, max_val) for _ in range(3)] -703 c = [ -704 a[1] * b[2] - a[2] * b[1], a[2] * b[0] - a[0] * b[2], -705 a[0] * b[1] - a[1] * b[0] -706 ] -707 -708 problem = rf"${a} \times {b} = $" -709 solution = f"${c}$" -710 return problem, solution +@@ -2221,20 +2340,20 @@ Given a quadratic equation in the form x^2 + bx + c, factor it into it's roots (736def vector_cross(min_val=-20, max_val=20): +737 r"""Cross product of 2 vectors +738 +739 | Ex. Problem | Ex. Solution | +740 | --- | --- | +741 | $[-1, -4, 10] \times [-11, 1, -16] = $ | $[54, -126, -45]$ | +742 """ +743 a = [random.randint(min_val, max_val) for _ in range(3)] +744 b = [random.randint(min_val, max_val) for _ in range(3)] +745 c = [ +746 a[1] * b[2] - a[2] * b[1], a[2] * b[0] - a[0] * b[2], +747 a[0] * b[1] - a[1] * b[0] +748 ] +749 +750 problem = rf"${a} \times {b} = $" +751 solution = f"${c}$" +752 return problem, solution
713def vector_dot(min_val=-20, max_val=20): -714 r"""Dot product of 2 vectors -715 -716 | Ex. Problem | Ex. Solution | -717 | --- | --- | -718 | $[12, -9, -8]\cdot[-9, 8, 1]=$ | $-188$ | -719 """ -720 a = [random.randint(min_val, max_val) for i in range(3)] -721 b = [random.randint(min_val, max_val) for i in range(3)] -722 c = a[0] * b[0] + a[1] * b[1] + a[2] * b[2] -723 -724 problem = rf'${a}\cdot{b}=$' -725 solution = f'${c}$' -726 return problem, solution +diff --git a/docs/mathgenerator/basic_math.html b/docs/mathgenerator/basic_math.html index b7b909c..290a6db 100644 --- a/docs/mathgenerator/basic_math.html +++ b/docs/mathgenerator/basic_math.html @@ -552,11 +552,11 @@ 411 f += 1 412 a = b = 1 413 for i in factors.keys(): -414 if factors[i]&1 == 0: -415 a *= i ** (factors[i] // 2) +414 if factors[i] & 1 == 0: +415 a *= i ** (factors[i] // 2) 416 else: -417 a *= i ** ((factors[i]-1) // 2) -418 b *= i +417 a *= i ** ((factors[i] - 1) // 2) +418 b *= i 419 if a == 1 or b == 1: 420 return simplify_square_root(max_variable) 421 else: @@ -1642,11 +1642,11 @@ 412 f += 1 413 a = b = 1 414 for i in factors.keys(): -415 if factors[i]&1 == 0: -416 a *= i ** (factors[i] // 2) +415 if factors[i] & 1 == 0: +416 a *= i ** (factors[i] // 2) 417 else: -418 a *= i ** ((factors[i]-1) // 2) -419 b *= i +418 a *= i ** ((factors[i] - 1) // 2) +419 b *= i 420 if a == 1 or b == 1: 421 return simplify_square_root(max_variable) 422 else: diff --git a/docs/search.js b/docs/search.js index 071c720..781e3d6 100644 --- a/docs/search.js +++ b/docs/search.js @@ -1,6 +1,6 @@ window.pdocSearch = (function(){ /** elasticlunr - http://weixsong.github.io * Copyright (C) 2017 Oliver Nightingale * Copyright (C) 2017 Wei Song * MIT Licensed */!function(){function e(e){if(null===e||"object"!=typeof e)return e;var t=e.constructor();for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n]);return t}var t=function(e){var n=new t.Index;return n.pipeline.add(t.trimmer,t.stopWordFilter,t.stemmer),e&&e.call(n,n),n};t.version="0.9.5",lunr=t,t.utils={},t.utils.warn=function(e){return function(t){e.console&&console.warn&&console.warn(t)}}(this),t.utils.toString=function(e){return void 0===e||null===e?"":e.toString()},t.EventEmitter=function(){this.events={}},t.EventEmitter.prototype.addListener=function(){var e=Array.prototype.slice.call(arguments),t=e.pop(),n=e;if("function"!=typeof t)throw new TypeError("last argument must be a function");n.forEach(function(e){this.hasHandler(e)||(this.events[e]=[]),this.events[e].push(t)},this)},t.EventEmitter.prototype.removeListener=function(e,t){if(this.hasHandler(e)){var n=this.events[e].indexOf(t);-1!==n&&(this.events[e].splice(n,1),0==this.events[e].length&&delete this.events[e])}},t.EventEmitter.prototype.emit=function(e){if(this.hasHandler(e)){var t=Array.prototype.slice.call(arguments,1);this.events[e].forEach(function(e){e.apply(void 0,t)},this)}},t.EventEmitter.prototype.hasHandler=function(e){return e in this.events},t.tokenizer=function(e){if(!arguments.length||null===e||void 0===e)return[];if(Array.isArray(e)){var n=e.filter(function(e){return null===e||void 0===e?!1:!0});n=n.map(function(e){return t.utils.toString(e).toLowerCase()});var i=[];return n.forEach(function(e){var n=e.split(t.tokenizer.seperator);i=i.concat(n)},this),i}return e.toString().trim().toLowerCase().split(t.tokenizer.seperator)},t.tokenizer.defaultSeperator=/[\s\-]+/,t.tokenizer.seperator=t.tokenizer.defaultSeperator,t.tokenizer.setSeperator=function(e){null!==e&&void 0!==e&&"object"==typeof e&&(t.tokenizer.seperator=e)},t.tokenizer.resetSeperator=function(){t.tokenizer.seperator=t.tokenizer.defaultSeperator},t.tokenizer.getSeperator=function(){return t.tokenizer.seperator},t.Pipeline=function(){this._queue=[]},t.Pipeline.registeredFunctions={},t.Pipeline.registerFunction=function(e,n){n in t.Pipeline.registeredFunctions&&t.utils.warn("Overwriting existing registered function: "+n),e.label=n,t.Pipeline.registeredFunctions[n]=e},t.Pipeline.getRegisteredFunction=function(e){return e in t.Pipeline.registeredFunctions!=!0?null:t.Pipeline.registeredFunctions[e]},t.Pipeline.warnIfFunctionNotRegistered=function(e){var n=e.label&&e.label in this.registeredFunctions;n||t.utils.warn("Function is not registered with pipeline. This may cause problems when serialising the index.\n",e)},t.Pipeline.load=function(e){var n=new t.Pipeline;return e.forEach(function(e){var i=t.Pipeline.getRegisteredFunction(e);if(!i)throw new Error("Cannot load un-registered function: "+e);n.add(i)}),n},t.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(e){t.Pipeline.warnIfFunctionNotRegistered(e),this._queue.push(e)},this)},t.Pipeline.prototype.after=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i+1,0,n)},t.Pipeline.prototype.before=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i,0,n)},t.Pipeline.prototype.remove=function(e){var t=this._queue.indexOf(e);-1!==t&&this._queue.splice(t,1)},t.Pipeline.prototype.run=function(e){for(var t=[],n=e.length,i=this._queue.length,o=0;n>o;o++){for(var r=e[o],s=0;i>s&&(r=this._queue[s](r,o,e),void 0!==r&&null!==r);s++);void 0!==r&&null!==r&&t.push(r)}return t},t.Pipeline.prototype.reset=function(){this._queue=[]},t.Pipeline.prototype.get=function(){return this._queue},t.Pipeline.prototype.toJSON=function(){return this._queue.map(function(e){return t.Pipeline.warnIfFunctionNotRegistered(e),e.label})},t.Index=function(){this._fields=[],this._ref="id",this.pipeline=new t.Pipeline,this.documentStore=new t.DocumentStore,this.index={},this.eventEmitter=new t.EventEmitter,this._idfCache={},this.on("add","remove","update",function(){this._idfCache={}}.bind(this))},t.Index.prototype.on=function(){var e=Array.prototype.slice.call(arguments);return this.eventEmitter.addListener.apply(this.eventEmitter,e)},t.Index.prototype.off=function(e,t){return this.eventEmitter.removeListener(e,t)},t.Index.load=function(e){e.version!==t.version&&t.utils.warn("version mismatch: current "+t.version+" importing "+e.version);var n=new this;n._fields=e.fields,n._ref=e.ref,n.documentStore=t.DocumentStore.load(e.documentStore),n.pipeline=t.Pipeline.load(e.pipeline),n.index={};for(var i in e.index)n.index[i]=t.InvertedIndex.load(e.index[i]);return n},t.Index.prototype.addField=function(e){return this._fields.push(e),this.index[e]=new t.InvertedIndex,this},t.Index.prototype.setRef=function(e){return this._ref=e,this},t.Index.prototype.saveDocument=function(e){return this.documentStore=new t.DocumentStore(e),this},t.Index.prototype.addDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.addDoc(i,e),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));this.documentStore.addFieldLength(i,n,o.length);var r={};o.forEach(function(e){e in r?r[e]+=1:r[e]=1},this);for(var s in r){var u=r[s];u=Math.sqrt(u),this.index[n].addToken(s,{ref:i,tf:u})}},this),n&&this.eventEmitter.emit("add",e,this)}},t.Index.prototype.removeDocByRef=function(e){if(e&&this.documentStore.isDocStored()!==!1&&this.documentStore.hasDoc(e)){var t=this.documentStore.getDoc(e);this.removeDoc(t,!1)}},t.Index.prototype.removeDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.hasDoc(i)&&(this.documentStore.removeDoc(i),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));o.forEach(function(e){this.index[n].removeToken(e,i)},this)},this),n&&this.eventEmitter.emit("remove",e,this))}},t.Index.prototype.updateDoc=function(e,t){var t=void 0===t?!0:t;this.removeDocByRef(e[this._ref],!1),this.addDoc(e,!1),t&&this.eventEmitter.emit("update",e,this)},t.Index.prototype.idf=function(e,t){var n="@"+t+"/"+e;if(Object.prototype.hasOwnProperty.call(this._idfCache,n))return this._idfCache[n];var i=this.index[t].getDocFreq(e),o=1+Math.log(this.documentStore.length/(i+1));return this._idfCache[n]=o,o},t.Index.prototype.getFields=function(){return this._fields.slice()},t.Index.prototype.search=function(e,n){if(!e)return[];e="string"==typeof e?{any:e}:JSON.parse(JSON.stringify(e));var i=null;null!=n&&(i=JSON.stringify(n));for(var o=new t.Configuration(i,this.getFields()).get(),r={},s=Object.keys(e),u=0;u755def vector_dot(min_val=-20, max_val=20): +756 r"""Dot product of 2 vectors +757 +758 | Ex. Problem | Ex. Solution | +759 | --- | --- | +760 | $[12, -9, -8]\cdot[-9, 8, 1]=$ | $-188$ | +761 """ +762 a = [random.randint(min_val, max_val) for i in range(3)] +763 b = [random.randint(min_val, max_val) for i in range(3)] +764 c = a[0] * b[0] + a[1] * b[1] + a[2] * b[2] +765 +766 problem = rf'${a}\cdot{b}=$' +767 solution = f'${c}$' +768 return problem, solution0&&t.push(e);for(var i in n)"docs"!==i&&"df"!==i&&this.expandToken(e+i,t,n[i]);return t},t.InvertedIndex.prototype.toJSON=function(){return{root:this.root}},t.Configuration=function(e,n){var e=e||"";if(void 0==n||null==n)throw new Error("fields should not be null");this.config={};var i;try{i=JSON.parse(e),this.buildUserConfig(i,n)}catch(o){t.utils.warn("user configuration parse failed, will use default configuration"),this.buildDefaultConfig(n)}},t.Configuration.prototype.buildDefaultConfig=function(e){this.reset(),e.forEach(function(e){this.config[e]={boost:1,bool:"OR",expand:!1}},this)},t.Configuration.prototype.buildUserConfig=function(e,n){var i="OR",o=!1;if(this.reset(),"bool"in e&&(i=e.bool||i),"expand"in e&&(o=e.expand||o),"fields"in e)for(var r in e.fields)if(n.indexOf(r)>-1){var s=e.fields[r],u=o;void 0!=s.expand&&(u=s.expand),this.config[r]={boost:s.boost||0===s.boost?s.boost:1,bool:s.bool||i,expand:u}}else t.utils.warn("field name in user configuration not found in index instance fields");else this.addAllFields2UserConfig(i,o,n)},t.Configuration.prototype.addAllFields2UserConfig=function(e,t,n){n.forEach(function(n){this.config[n]={boost:1,bool:e,expand:t}},this)},t.Configuration.prototype.get=function(){return this.config},t.Configuration.prototype.reset=function(){this.config={}},lunr.SortedSet=function(){this.length=0,this.elements=[]},lunr.SortedSet.load=function(e){var t=new this;return t.elements=e,t.length=e.length,t},lunr.SortedSet.prototype.add=function(){var e,t;for(e=0;e 1;){if(r===e)return o;e>r&&(t=o),r>e&&(n=o),i=n-t,o=t+Math.floor(i/2),r=this.elements[o]}return r===e?o:-1},lunr.SortedSet.prototype.locationFor=function(e){for(var t=0,n=this.elements.length,i=n-t,o=t+Math.floor(i/2),r=this.elements[o];i>1;)e>r&&(t=o),r>e&&(n=o),i=n-t,o=t+Math.floor(i/2),r=this.elements[o];return r>e?o:e>r?o+1:void 0},lunr.SortedSet.prototype.intersect=function(e){for(var t=new lunr.SortedSet,n=0,i=0,o=this.length,r=e.length,s=this.elements,u=e.elements;;){if(n>o-1||i>r-1)break;s[n]!==u[i]?s[n]u[i]&&i++:(t.add(s[n]),n++,i++)}return t},lunr.SortedSet.prototype.clone=function(){var e=new lunr.SortedSet;return e.elements=this.toArray(),e.length=e.elements.length,e},lunr.SortedSet.prototype.union=function(e){var t,n,i;this.length>=e.length?(t=this,n=e):(t=e,n=this),i=t.clone();for(var o=0,r=n.toArray();o mathgenerator\n\n A math problem generator, created for the purpose of giving teachers and students the means to easily get access to random math exercises to suit their needs.
\n\nTo try out generators, go to https://mathgenerator-demo.netlify.app
\n\nSee CONTRIBUTING.md for information about how to contribute.
\n\nTable of Contents
\n\n\n
\n\n- Installation
\n- Usage
\n- Documentation
\nInstallation
\n\nThe project can be install via pip
\n\n\n\n\n\npip install mathgenerator\nUsage
\n\nHere is an example of how you would generate an addition problem:
\n\n\n\n\n\nimport mathgenerator\n\n#generate an addition problem\nproblem, solution = mathgenerator.addition()\n\n#another way to generate an addition problem using genById()\nproblem, solution = mathgenerator.genById(0)\nYou may prefer to use
\n\nimport mathgenerator as mgand run functions likemg.addition()so that you don't have to type as much.\n\nProblem/solution pairs are generated with either:\n
\n\n- \n
mathgenerator.<generator_name>()- generates a problem, solution set from the given generator name.- \n
mathgenerator.genById(id)- generates a problem, solution set with generator id provided by theidparameter\nYou can also use
getGenList()to return a list of all generators included in the library in the format:\n\n\n\n\n[funcname, subjectname]\nDocumentation
\n\nDocumentation can be found at https://lukew3.github.io/mathgenerator
\n"}, "mathgenerator.get_gen_list": {"fullname": "mathgenerator.get_gen_list", "modulename": "mathgenerator", "qualname": "get_gen_list", "kind": "function", "doc": "\n", "signature": "():", "funcdef": "def"}, "mathgenerator.gen_by_id": {"fullname": "mathgenerator.gen_by_id", "modulename": "mathgenerator", "qualname": "gen_by_id", "kind": "function", "doc": "\n", "signature": "(id, *args, **kwargs):", "funcdef": "def"}, "mathgenerator.getGenList": {"fullname": "mathgenerator.getGenList", "modulename": "mathgenerator", "qualname": "getGenList", "kind": "function", "doc": "\n", "signature": "():", "funcdef": "def"}, "mathgenerator.genById": {"fullname": "mathgenerator.genById", "modulename": "mathgenerator", "qualname": "genById", "kind": "function", "doc": "\n", "signature": "(id, *args, **kwargs):", "funcdef": "def"}, "mathgenerator.algebra": {"fullname": "mathgenerator.algebra", "modulename": "mathgenerator.algebra", "kind": "module", "doc": "\n"}, "mathgenerator.algebra.basic_algebra": {"fullname": "mathgenerator.algebra.basic_algebra", "modulename": "mathgenerator.algebra", "qualname": "basic_algebra", "kind": "function", "doc": "Basic Algebra
\n\n\n\n
\n", "signature": "(max_variable=10):", "funcdef": "def"}, "mathgenerator.algebra.combine_like_terms": {"fullname": "mathgenerator.algebra.combine_like_terms", "modulename": "mathgenerator.algebra", "qualname": "combine_like_terms", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n$1x + 5 = 5$ \n$0$ \nCombine Like Terms
\n\n\n\n
\n", "signature": "(max_coef=10, max_exp=20, max_terms=10):", "funcdef": "def"}, "mathgenerator.algebra.complex_quadratic": {"fullname": "mathgenerator.algebra.complex_quadratic", "modulename": "mathgenerator.algebra", "qualname": "complex_quadratic", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n$6x^{9} + 3x^{2} + 5x^{19} + 3x^{17}$ \n$3x^{2} + 6x^{9} + 3x^{17} + 5x^{19}$ \nComplex Quadratic Equation
\n\n\n\n
\n", "signature": "(prob_type=0, max_range=10):", "funcdef": "def"}, "mathgenerator.algebra.compound_interest": {"fullname": "mathgenerator.algebra.compound_interest", "modulename": "mathgenerator.algebra", "qualname": "compound_interest", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nFind the roots of given Quadratic Equation $x^2 + 8x + 8 = 0$ \n$((-1.172, -6.828)) = (\\frac{-8 + \\sqrt{32}}{21}, (\\frac{-8 - \\sqrt{32}}{21})$ \nCompound Interest
\n\n\n\n
\n", "signature": "(max_principle=10000, max_rate=10, max_time=10):", "funcdef": "def"}, "mathgenerator.algebra.distance_two_points": {"fullname": "mathgenerator.algebra.distance_two_points", "modulename": "mathgenerator.algebra", "qualname": "distance_two_points", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nCompound interest for a principle amount of $2679$ dollars, $9$% rate of interest and for a time period of $3$ years is $=$ \n$3469.38$ \nDistance between 2 points
\n\n\n\n
\n", "signature": "(max_val_xy=20, min_val_xy=-20):", "funcdef": "def"}, "mathgenerator.algebra.expanding": {"fullname": "mathgenerator.algebra.expanding", "modulename": "mathgenerator.algebra", "qualname": "expanding", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nFind the distance between $(-19, -6)$ and $(15, -16)$ \n$\\sqrt{1256}$ \nExpanding Factored Binomial
\n\n\n\n
\n", "signature": "(range_x1=10, range_x2=10, range_a=10, range_b=10):", "funcdef": "def"}, "mathgenerator.algebra.factoring": {"fullname": "mathgenerator.algebra.factoring", "modulename": "mathgenerator.algebra", "qualname": "factoring", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n$(x-6)(-3x-3)$ \n$x^2+18x+18$ \nFactoring Quadratic\nGiven a quadratic equation in the form x^2 + bx + c, factor it into it's roots (x - x1)(x -x2)
\n\n\n\n
\n", "signature": "(range_x1=10, range_x2=10):", "funcdef": "def"}, "mathgenerator.algebra.int_matrix_22_determinant": {"fullname": "mathgenerator.algebra.int_matrix_22_determinant", "modulename": "mathgenerator.algebra", "qualname": "int_matrix_22_determinant", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n$x^2+2x-24$ \n$(x-4)(x+6)$ \nDeterminant to 2x2 Matrix
\n\n\n\n
\n", "signature": "(max_matrix_val=100):", "funcdef": "def"}, "mathgenerator.algebra.intersection_of_two_lines": {"fullname": "mathgenerator.algebra.intersection_of_two_lines", "modulename": "mathgenerator.algebra", "qualname": "intersection_of_two_lines", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n$\\det \\begin{bmatrix} 88 & 40 \\\\ 9 & 91 \\end{bmatrix}= $ \n$7648$ \nIntersection of two lines
\n\n\n\n
\n", "signature": "(\tmin_m=-10,\tmax_m=10,\tmin_b=-10,\tmax_b=10,\tmin_denominator=1,\tmax_denominator=6):", "funcdef": "def"}, "mathgenerator.algebra.invert_matrix": {"fullname": "mathgenerator.algebra.invert_matrix", "modulename": "mathgenerator.algebra", "qualname": "invert_matrix", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nFind the point of intersection of the two lines: $y = \\frac{-2}{6}x + 3$ and $y = \\frac{3}{6}x - 8$ \n$(\\frac{66}{5}, \\frac{-7}{5})$ \nInvert Matrix
\n\n\n\n
\n", "signature": "(\tsquare_matrix_dimension=3,\tmax_matrix_element=99,\tonly_integer_elements_in_inverted_matrixe=True):", "funcdef": "def"}, "mathgenerator.algebra.linear_equations": {"fullname": "mathgenerator.algebra.linear_equations", "modulename": "mathgenerator.algebra", "qualname": "linear_equations", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nInverse of Matrix $\\begin{bmatrix} 4 & 1 & 4 \\\\ 5 & 1 & 5 \\\\ 12 & 3 & 13 \\end{bmatrix}$ is: \n$\\begin{bmatrix} 2 & 1 & -1 \\\\ 5 & -4 & 0 \\\\ -3 & 0 & 1 \\end{bmatrix}$ \nLinear Equations
\n\n\n\n
\n", "signature": "(n=2, var_range=20, coeff_range=20):", "funcdef": "def"}, "mathgenerator.algebra.log": {"fullname": "mathgenerator.algebra.log", "modulename": "mathgenerator.algebra", "qualname": "log", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nGiven the equations $10x + -20y = 310$ and $-16x + -17y = 141$, solve for $x$ and $y$ \n$x = 5$, $y = -13$ \nLogarithm
\n\n\n\n
\n", "signature": "(max_base=3, max_val=8):", "funcdef": "def"}, "mathgenerator.algebra.matrix_multiplication": {"fullname": "mathgenerator.algebra.matrix_multiplication", "modulename": "mathgenerator.algebra", "qualname": "matrix_multiplication", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n$log_{3}(243)=$ \n$5$ \nMultiply Two Matrices
\n\n\n\n
\n", "signature": "(max_val=100, max_dim=10):", "funcdef": "def"}, "mathgenerator.algebra.midpoint_of_two_points": {"fullname": "mathgenerator.algebra.midpoint_of_two_points", "modulename": "mathgenerator.algebra", "qualname": "midpoint_of_two_points", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nMultiply $\\begin{bmatrix} 15 & 72 \\\\ 64 & -20 \\\\ 18 & 59 \\\\ -21 & -55 \\\\ 20 & -12 \\\\ -75 & -42 \\\\ 47 & 89 \\\\ -53 & 27 \\\\ -56 & 44 \\end{bmatrix}$ and $\\begin{bmatrix} 49 & -2 & 68 & -28 \\\\ 49 & 6 & 83 & 42 \\end{bmatrix}$ \n$\\begin{bmatrix} 4263 & 402 & 6996 & 2604 \\\\ 2156 & -248 & 2692 & -2632 \\\\ 3773 & 318 & 6121 & 1974 \\\\ -3724 & -288 & -5993 & -1722 \\\\ 392 & -112 & 364 & -1064 \\\\ -5733 & -102 & -8586 & 336 \\\\ 6664 & 440 & 10583 & 2422 \\\\ -1274 & 268 & -1363 & 2618 \\\\ -588 & 376 & -156 & 3416 \\end{bmatrix}$ \nMidpoint of two points
\n\n\n\n
\n", "signature": "(max_value=20):", "funcdef": "def"}, "mathgenerator.algebra.multiply_complex_numbers": {"fullname": "mathgenerator.algebra.multiply_complex_numbers", "modulename": "mathgenerator.algebra", "qualname": "multiply_complex_numbers", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nThe midpoint of $(-8,10)$ and $(18,0) = $ \n$(5.0,5.0)$ \nMultiplication of 2 complex numbers
\n\n\n\n
\n", "signature": "(min_real_imaginary_num=-20, max_real_imaginary_num=20):", "funcdef": "def"}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"fullname": "mathgenerator.algebra.multiply_int_to_22_matrix", "modulename": "mathgenerator.algebra", "qualname": "multiply_int_to_22_matrix", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n$(14+18j) * (14+15j) = $ \n$(-74+462j)$ \nMultiply Integer to 2x2 Matrix
\n\n\n\n
\n", "signature": "(max_matrix_val=10, max_res=100):", "funcdef": "def"}, "mathgenerator.algebra.quadratic_equation": {"fullname": "mathgenerator.algebra.quadratic_equation", "modulename": "mathgenerator.algebra", "qualname": "quadratic_equation", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n$5 * \\begin{bmatrix} 1 & 0 \\\\ 2 & 9 \\end{bmatrix} =$ \n$\\begin{bmatrix} 5 & 0 \\\\ 10 & 45 \\end{bmatrix}$ \nQuadratic Equation
\n\n\n\n
\n", "signature": "(max_val=100):", "funcdef": "def"}, "mathgenerator.algebra.simple_interest": {"fullname": "mathgenerator.algebra.simple_interest", "modulename": "mathgenerator.algebra", "qualname": "simple_interest", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nWhat are the zeros of the quadratic equation $22x^2+137x+25=0$ \n${-0.19, -6.04}$ \nSimple Interest
\n\n\n\n
\n", "signature": "(max_principle=10000, max_rate=10, max_time=10):", "funcdef": "def"}, "mathgenerator.algebra.system_of_equations": {"fullname": "mathgenerator.algebra.system_of_equations", "modulename": "mathgenerator.algebra", "qualname": "system_of_equations", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nSimple interest for a principle amount of $7217$ dollars, $3$% rate of interest and for a time period of $10$ years is $=$ \n$2165.1$ \nSolve a System of Equations in R^2
\n\n\n\n
\n", "signature": "(range_x=10, range_y=10, coeff_mult_range=10):", "funcdef": "def"}, "mathgenerator.algebra.vector_cross": {"fullname": "mathgenerator.algebra.vector_cross", "modulename": "mathgenerator.algebra", "qualname": "vector_cross", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nGiven $-x + 5y = -28$ and $9x + 2y = 64$, solve for $x$ and $y$. \n$x = 8$, $y = -4$ \nCross product of 2 vectors
\n\n\n\n
\n", "signature": "(min_val=-20, max_val=20):", "funcdef": "def"}, "mathgenerator.algebra.vector_dot": {"fullname": "mathgenerator.algebra.vector_dot", "modulename": "mathgenerator.algebra", "qualname": "vector_dot", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n$[-1, -4, 10] \\times [-11, 1, -16] = $ \n$[54, -126, -45]$ \nDot product of 2 vectors
\n\n\n\n
\n", "signature": "(min_val=-20, max_val=20):", "funcdef": "def"}, "mathgenerator.basic_math": {"fullname": "mathgenerator.basic_math", "modulename": "mathgenerator.basic_math", "kind": "module", "doc": "\n"}, "mathgenerator.basic_math.absolute_difference": {"fullname": "mathgenerator.basic_math.absolute_difference", "modulename": "mathgenerator.basic_math", "qualname": "absolute_difference", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n$[12, -9, -8]\\cdot[-9, 8, 1]=$ \n$-188$ \nAbsolute difference between two numbers
\n\n\n\n
\n", "signature": "(max_a=100, max_b=100):", "funcdef": "def"}, "mathgenerator.basic_math.addition": {"fullname": "mathgenerator.basic_math.addition", "modulename": "mathgenerator.basic_math", "qualname": "addition", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n$ \n22-34 \n=$ \n$12$ \nAddition of two numbers
\n\n\n\n
\n", "signature": "(max_sum=99, max_addend=50):", "funcdef": "def"}, "mathgenerator.basic_math.compare_fractions": {"fullname": "mathgenerator.basic_math.compare_fractions", "modulename": "mathgenerator.basic_math", "qualname": "compare_fractions", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n$22+34=$ \n$56$ \nCompare Fractions
\n\n\n\n
\n", "signature": "(max_val=10):", "funcdef": "def"}, "mathgenerator.basic_math.cube_root": {"fullname": "mathgenerator.basic_math.cube_root", "modulename": "mathgenerator.basic_math", "qualname": "cube_root", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nWhich symbol represents the comparison between $\\frac{1}{2}$ and $\\frac{3}{4}$? \n$>$ \nCube Root
\n\n\n\n
\n", "signature": "(min_no=1, max_no=1000):", "funcdef": "def"}, "mathgenerator.basic_math.divide_fractions": {"fullname": "mathgenerator.basic_math.divide_fractions", "modulename": "mathgenerator.basic_math", "qualname": "divide_fractions", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nWhat is the cube root of: $\\sqrt[3]{125}=$ to 2 decimal places? \n$5$ \nDivide Fractions
\n\n\n\n
\n", "signature": "(max_val=10):", "funcdef": "def"}, "mathgenerator.basic_math.division": {"fullname": "mathgenerator.basic_math.division", "modulename": "mathgenerator.basic_math", "qualname": "division", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n$\\frac{7}{9}\\div\\frac{4}{1}=$ \n$\\frac{7}{36}$ \nDivision
\n\n\n\n
\n", "signature": "(max_a=25, max_b=25):", "funcdef": "def"}, "mathgenerator.basic_math.exponentiation": {"fullname": "mathgenerator.basic_math.exponentiation", "modulename": "mathgenerator.basic_math", "qualname": "exponentiation", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n$216\\div24=$ \n$9$ \nExponentiation
\n\n\n\n
\n", "signature": "(max_base=20, max_expo=10):", "funcdef": "def"}, "mathgenerator.basic_math.factorial": {"fullname": "mathgenerator.basic_math.factorial", "modulename": "mathgenerator.basic_math", "qualname": "factorial", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n$9^{5}=$ \n$8$ \nFactorial
\n\n\n\n
\n", "signature": "(max_input=6):", "funcdef": "def"}, "mathgenerator.basic_math.fraction_multiplication": {"fullname": "mathgenerator.basic_math.fraction_multiplication", "modulename": "mathgenerator.basic_math", "qualname": "fraction_multiplication", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n$4! =$ \n$24$ \nFraction Multiplication
\n\n\n\n
\n", "signature": "(max_val=10):", "funcdef": "def"}, "mathgenerator.basic_math.fraction_to_decimal": {"fullname": "mathgenerator.basic_math.fraction_to_decimal", "modulename": "mathgenerator.basic_math", "qualname": "fraction_to_decimal", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n$\\frac{3}{10}\\cdot\\frac{6}{7}=$ \n$\\frac{9}{35}$ \nFraction to Decimal
\n\n\n\n
\n", "signature": "(max_res=99, max_divid=99):", "funcdef": "def"}, "mathgenerator.basic_math.greatest_common_divisor": {"fullname": "mathgenerator.basic_math.greatest_common_divisor", "modulename": "mathgenerator.basic_math", "qualname": "greatest_common_divisor", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n$83\\div80=$ \n$1.04$ \nGreatest Common Divisor of N Numbers ( GCD / HCF )
\n\n\n\n
\n", "signature": "(numbers_count=2, max_num=1000):", "funcdef": "def"}, "mathgenerator.basic_math.is_composite": {"fullname": "mathgenerator.basic_math.is_composite", "modulename": "mathgenerator.basic_math", "qualname": "is_composite", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n$GCD(488075608, 75348096)=$ \n$8$ \nIs Composite
\n\n\n\n
\n", "signature": "(max_num=250):", "funcdef": "def"}, "mathgenerator.basic_math.is_prime": {"fullname": "mathgenerator.basic_math.is_prime", "modulename": "mathgenerator.basic_math", "qualname": "is_prime", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nIs $171$ composite? \nYes \nIs Prime
\n\n\n\n
\n", "signature": "(max_num=100):", "funcdef": "def"}, "mathgenerator.basic_math.multiplication": {"fullname": "mathgenerator.basic_math.multiplication", "modulename": "mathgenerator.basic_math", "qualname": "multiplication", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nIs $37$ prime? \nYes \nMultiplication
\n\n\n\n
\n", "signature": "(max_multi=12):", "funcdef": "def"}, "mathgenerator.basic_math.percentage": {"fullname": "mathgenerator.basic_math.percentage", "modulename": "mathgenerator.basic_math", "qualname": "percentage", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n$10\\cdot9=$ \n$90$ \nPercentage of a number
\n\n\n\n
\n", "signature": "(max_value=99, max_percentage=99):", "funcdef": "def"}, "mathgenerator.basic_math.percentage_difference": {"fullname": "mathgenerator.basic_math.percentage_difference", "modulename": "mathgenerator.basic_math", "qualname": "percentage_difference", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nWhat is $45$% of $39$? \n$17.55$ \nPercentage difference between two numbers
\n\n\n\n
\n", "signature": "(max_value=200, min_value=0):", "funcdef": "def"}, "mathgenerator.basic_math.percentage_error": {"fullname": "mathgenerator.basic_math.percentage_error", "modulename": "mathgenerator.basic_math", "qualname": "percentage_error", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nWhat is the percentage difference between $2$ and $10$? \n$133.33$ \nPercentage error
\n\n\n\n
\n", "signature": "(max_value=100, min_value=-100):", "funcdef": "def"}, "mathgenerator.basic_math.power_of_powers": {"fullname": "mathgenerator.basic_math.power_of_powers", "modulename": "mathgenerator.basic_math", "qualname": "power_of_powers", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nFind the percentage error when observed value equals $32$ and exact value equals $81$. \n$60.49$% \nPower of Powers
\n\n\n\n
\n", "signature": "(max_base=50, max_power=10):", "funcdef": "def"}, "mathgenerator.basic_math.square": {"fullname": "mathgenerator.basic_math.square", "modulename": "mathgenerator.basic_math", "qualname": "square", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nSimplify $18^{10^{8}}$ \n$18^{80}$ \nSquare
\n\n\n\n
\n", "signature": "(max_square_num=20):", "funcdef": "def"}, "mathgenerator.basic_math.square_root": {"fullname": "mathgenerator.basic_math.square_root", "modulename": "mathgenerator.basic_math", "qualname": "square_root", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n$17^2=$ \n$289$ \nSquare Root
\n\n\n\n
\n", "signature": "(min_no=1, max_no=12):", "funcdef": "def"}, "mathgenerator.basic_math.simplify_square_root": {"fullname": "mathgenerator.basic_math.simplify_square_root", "modulename": "mathgenerator.basic_math", "qualname": "simplify_square_root", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n$\\sqrt{64}=$ \n$8$ \nSimplify Square Root
\n\n\n\n
\n", "signature": "(max_variable=100):", "funcdef": "def"}, "mathgenerator.basic_math.subtraction": {"fullname": "mathgenerator.basic_math.subtraction", "modulename": "mathgenerator.basic_math", "qualname": "subtraction", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n$\\sqrt{63}$ \n$3\\sqrt{7}$ \nSubtraction of two numbers
\n\n\n\n
\n", "signature": "(max_minuend=99, max_diff=99):", "funcdef": "def"}, "mathgenerator.calculus": {"fullname": "mathgenerator.calculus", "modulename": "mathgenerator.calculus", "kind": "module", "doc": "\n"}, "mathgenerator.calculus.definite_integral": {"fullname": "mathgenerator.calculus.definite_integral", "modulename": "mathgenerator.calculus", "qualname": "definite_integral", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n$54-22=$ \n$32$ \nDefinite Integral of Quadratic Equation
\n\n\n\n
\n", "signature": "(max_coef=100):", "funcdef": "def"}, "mathgenerator.calculus.power_rule_differentiation": {"fullname": "mathgenerator.calculus.power_rule_differentiation", "modulename": "mathgenerator.calculus", "qualname": "power_rule_differentiation", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nThe definite integral within limits $0$ to $1$ of the equation $28x^2 + 32x + 66 = $ \n$91.33$ \nPower Rule Differentiation
\n\n\n\n
\n", "signature": "(max_coef=10, max_exp=10, max_terms=5):", "funcdef": "def"}, "mathgenerator.calculus.power_rule_integration": {"fullname": "mathgenerator.calculus.power_rule_integration", "modulename": "mathgenerator.calculus", "qualname": "power_rule_integration", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nDifferentiate $1x^{5} + 4x^{7} + 4x^{4}$ \n$5x^{4} + 28x^{6} + 16x^{3}$ \nPower Rule Integration
\n\n\n\n
\n", "signature": "(max_coef=10, max_exp=10, max_terms=5):", "funcdef": "def"}, "mathgenerator.calculus.stationary_points": {"fullname": "mathgenerator.calculus.stationary_points", "modulename": "mathgenerator.calculus", "qualname": "stationary_points", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nIntegrate $9x^{6} + 2x^{6} + 4x^{3}$ \n$\\frac{9}{6}x^{7} + \\frac{2}{6}x^{7} + \\frac{4}{3}x^{4} + C$ \nStationary Points
\n\n\n\n
\n", "signature": "(max_exp=3, max_coef=10):", "funcdef": "def"}, "mathgenerator.calculus.trig_differentiation": {"fullname": "mathgenerator.calculus.trig_differentiation", "modulename": "mathgenerator.calculus", "qualname": "trig_differentiation", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n$f(x)=6x^3 + 6x^2 + x + 8$ \n${- \\frac{1}{3} - \\frac{\\sqrt{2}}{6}, - \\frac{1}{3} + \\frac{\\sqrt{2}}{6}}$ \nTrigonometric Differentiation
\n\n\n\n
\n", "signature": "():", "funcdef": "def"}, "mathgenerator.computer_science": {"fullname": "mathgenerator.computer_science", "modulename": "mathgenerator.computer_science", "kind": "module", "doc": "\n"}, "mathgenerator.computer_science.bcd_to_decimal": {"fullname": "mathgenerator.computer_science.bcd_to_decimal", "modulename": "mathgenerator.computer_science", "qualname": "bcd_to_decimal", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n$\\frac{d}{dx}(\\csc)=$ \n$-\\csc \\cdot \\cot$ \nBinary Coded Decimal to Integer
\n\n\n\n
\n", "signature": "(max_number=10000):", "funcdef": "def"}, "mathgenerator.computer_science.binary_2s_complement": {"fullname": "mathgenerator.computer_science.binary_2s_complement", "modulename": "mathgenerator.computer_science", "qualname": "binary_2s_complement", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nInteger of Binary Coded Decimal $4 =$ \n$17801$ \nBinary 2's Complement
\n\n\n\n
\n", "signature": "(maxDigits=10):", "funcdef": "def"}, "mathgenerator.computer_science.binary_complement_1s": {"fullname": "mathgenerator.computer_science.binary_complement_1s", "modulename": "mathgenerator.computer_science", "qualname": "binary_complement_1s", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n2's complement of $1011 = $ \n$101$ \nBinary Complement 1s
\n\n\n\n
\n", "signature": "(maxDigits=10):", "funcdef": "def"}, "mathgenerator.computer_science.binary_to_decimal": {"fullname": "mathgenerator.computer_science.binary_to_decimal", "modulename": "mathgenerator.computer_science", "qualname": "binary_to_decimal", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n$1111001 = $ \n$0000110$ \nBinary to Decimal
\n\n\n\n
\n", "signature": "(max_dig=10):", "funcdef": "def"}, "mathgenerator.computer_science.binary_to_hex": {"fullname": "mathgenerator.computer_science.binary_to_hex", "modulename": "mathgenerator.computer_science", "qualname": "binary_to_hex", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n$000110$ \n$6$ \nBinary to Hexidecimal
\n\n\n\n
\n", "signature": "(max_dig=10):", "funcdef": "def"}, "mathgenerator.computer_science.decimal_to_bcd": {"fullname": "mathgenerator.computer_science.decimal_to_bcd", "modulename": "mathgenerator.computer_science", "qualname": "decimal_to_bcd", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n$010101$ \n$0x15$ \nDecimal to Binary Coded Decimal
\n\n\n\n
\n", "signature": "(max_number=10000):", "funcdef": "def"}, "mathgenerator.computer_science.decimal_to_binary": {"fullname": "mathgenerator.computer_science.decimal_to_binary", "modulename": "mathgenerator.computer_science", "qualname": "decimal_to_binary", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nBCD of Decimal Number $6575 = $ \n$191015$ \nDecimal to Binary
\n\n\n\n
\n", "signature": "(max_dec=99):", "funcdef": "def"}, "mathgenerator.computer_science.decimal_to_hexadeci": {"fullname": "mathgenerator.computer_science.decimal_to_hexadeci", "modulename": "mathgenerator.computer_science", "qualname": "decimal_to_hexadeci", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nBinary of $4 = $ \n$100$ \nDecimal to Hexadecimal
\n\n\n\n
\n", "signature": "(max_dec=1000):", "funcdef": "def"}, "mathgenerator.computer_science.decimal_to_octal": {"fullname": "mathgenerator.computer_science.decimal_to_octal", "modulename": "mathgenerator.computer_science", "qualname": "decimal_to_octal", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nHexadecimal of $410 = $ \n$0x19a$ \nDecimal to Octal
\n\n\n\n
\n", "signature": "(max_decimal=4096):", "funcdef": "def"}, "mathgenerator.computer_science.fibonacci_series": {"fullname": "mathgenerator.computer_science.fibonacci_series", "modulename": "mathgenerator.computer_science", "qualname": "fibonacci_series", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nThe decimal number $3698$ in octal is: \n$0o7162$ \nFibonacci Series
\n\n\n\n
\n", "signature": "(min_no=1):", "funcdef": "def"}, "mathgenerator.computer_science.modulo_division": {"fullname": "mathgenerator.computer_science.modulo_division", "modulename": "mathgenerator.computer_science", "qualname": "modulo_division", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nThe Fibonacci Series of the first ${n}$ numbers is ? \n$0, 1, 1, 2, 3, 5, 8, 13, 21$ \nModulo Division
\n\n\n\n
\n", "signature": "(max_res=99, max_modulo=99):", "funcdef": "def"}, "mathgenerator.computer_science.nth_fibonacci_number": {"fullname": "mathgenerator.computer_science.nth_fibonacci_number", "modulename": "mathgenerator.computer_science", "qualname": "nth_fibonacci_number", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n$43$ % $33 = $ \n$10$ \nnth Fibonacci number
\n\n\n\n
\n", "signature": "(max_n=100):", "funcdef": "def"}, "mathgenerator.geometry": {"fullname": "mathgenerator.geometry", "modulename": "mathgenerator.geometry", "kind": "module", "doc": "\n"}, "mathgenerator.geometry.angle_btw_vectors": {"fullname": "mathgenerator.geometry.angle_btw_vectors", "modulename": "mathgenerator.geometry", "qualname": "angle_btw_vectors", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nWhat is the 85th Fibonacci number? \n$259695496911123328$ \nAngle between 2 vectors
\n\n\n\n
\n", "signature": "(max_elt_amt=20):", "funcdef": "def"}, "mathgenerator.geometry.angle_regular_polygon": {"fullname": "mathgenerator.geometry.angle_regular_polygon", "modulename": "mathgenerator.geometry", "qualname": "angle_regular_polygon", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nangle between the vectors $[363.84, 195.54, 997.08, 39.26, 60.14, 722.7, 888.57, 713.15, 436.22, 712.23, 349.23, 595.91, 191.8, 824.58, 861.56, 122.73, 815.14, 700.68, 506.5]$ and $[760.85, 934.67, 513.37, 796.93, 809.97, 423.54, 162.69, 758.96, 133.42, 478.14, 771.84, 824.88, 483.07, 134.41, 954.41, 893.42, 191.01, 453.97, 648.59]$ is: \n$0.81$ radians \nAngle of a Regular Polygon
\n\n\n\n
\n", "signature": "(min_val=3, max_val=20):", "funcdef": "def"}, "mathgenerator.geometry.arc_length": {"fullname": "mathgenerator.geometry.arc_length", "modulename": "mathgenerator.geometry", "qualname": "arc_length", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nFind the angle of a regular polygon with $8$ sides \n$135.0$ \nArc length of Angle
\n\n\n\n
\n", "signature": "(max_radius=49, max_angle=359):", "funcdef": "def"}, "mathgenerator.geometry.area_of_circle": {"fullname": "mathgenerator.geometry.area_of_circle", "modulename": "mathgenerator.geometry", "qualname": "area_of_circle", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nGiven radius, $44$ and angle, $184$. Find the arc length of the angle. \nArc length of the angle $= 141.30186$ \nArea of Circle
\n\n\n\n
\n", "signature": "(max_radius=100):", "funcdef": "def"}, "mathgenerator.geometry.area_of_circle_given_center_and_point": {"fullname": "mathgenerator.geometry.area_of_circle_given_center_and_point", "modulename": "mathgenerator.geometry", "qualname": "area_of_circle_given_center_and_point", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nArea of circle with radius $29=$ \n$2642.08$ \nArea of Circle given center and a point on circle
\n\n\n\n
\n", "signature": "(max_coordinate=10, max_radius=10):", "funcdef": "def"}, "mathgenerator.geometry.area_of_triangle": {"fullname": "mathgenerator.geometry.area_of_triangle", "modulename": "mathgenerator.geometry", "qualname": "area_of_triangle", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nArea of circle with center $(7,-6)$ and passing through $(1.0, -6.0)$ is \n$113.1$ \nArea of Triangle
\n\n\n\n
\n", "signature": "(max_a=20, max_b=20):", "funcdef": "def"}, "mathgenerator.geometry.basic_trigonometry": {"fullname": "mathgenerator.geometry.basic_trigonometry", "modulename": "mathgenerator.geometry", "qualname": "basic_trigonometry", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nArea of triangle with side lengths: $8, 1, 8 = $ \n$3.99$ \nTrigonometric Values
\n\n\n\n
\n", "signature": "(angles=[0, 30, 45, 60, 90], functions=['sin', 'cos', 'tan']):", "funcdef": "def"}, "mathgenerator.geometry.circumference": {"fullname": "mathgenerator.geometry.circumference", "modulename": "mathgenerator.geometry", "qualname": "circumference", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n$\\sin(30) = $ \n$\\frac{1}{2}$ \nCircumference of Circle
\n\n\n\n
\n", "signature": "(max_radius=100):", "funcdef": "def"}, "mathgenerator.geometry.complementary_and_supplementary_angle": {"fullname": "mathgenerator.geometry.complementary_and_supplementary_angle", "modulename": "mathgenerator.geometry", "qualname": "complementary_and_supplementary_angle", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nCircumference of circle with radius $56 = $ \n$351.86$ \nComplementary and Supplementary Angle
\n\n\n\n
\n", "signature": "(max_supp=180, max_comp=90):", "funcdef": "def"}, "mathgenerator.geometry.curved_surface_area_cylinder": {"fullname": "mathgenerator.geometry.curved_surface_area_cylinder", "modulename": "mathgenerator.geometry", "qualname": "curved_surface_area_cylinder", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nThe complementary angle of $15 =$ \n$75$ \nCurved surface area of a cylinder
\n\n\n\n
\n", "signature": "(max_radius=49, max_height=99):", "funcdef": "def"}, "mathgenerator.geometry.degree_to_rad": {"fullname": "mathgenerator.geometry.degree_to_rad", "modulename": "mathgenerator.geometry", "qualname": "degree_to_rad", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nWhat is the curved surface area of a cylinder of radius, $44$ and height, $92$? \n$25434.33$ \nDegrees to Radians
\n\n\n\n
\n", "signature": "(max_deg=360):", "funcdef": "def"}, "mathgenerator.geometry.equation_of_line_from_two_points": {"fullname": "mathgenerator.geometry.equation_of_line_from_two_points", "modulename": "mathgenerator.geometry", "qualname": "equation_of_line_from_two_points", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nAngle $113$ degrees in radians is: \n$1.97$ \nEquation of line from two points
\n\n\n\n
\n", "signature": "(max_coordinate=20, min_coordinate=-20):", "funcdef": "def"}, "mathgenerator.geometry.fourth_angle_of_quadrilateral": {"fullname": "mathgenerator.geometry.fourth_angle_of_quadrilateral", "modulename": "mathgenerator.geometry", "qualname": "fourth_angle_of_quadrilateral", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nWhat is the equation of the line between points $(13,9)$ and $(6,-19)$ in slope-intercept form? \n$y = 4x -43$ \nFourth Angle of Quadrilateral
\n\n\n\n
\n", "signature": "(max_angle=180):", "funcdef": "def"}, "mathgenerator.geometry.perimeter_of_polygons": {"fullname": "mathgenerator.geometry.perimeter_of_polygons", "modulename": "mathgenerator.geometry", "qualname": "perimeter_of_polygons", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nFourth angle of quadrilateral with angles $162 , 43, 78 =$ \n$77$ \nPerimeter of Polygons
\n\n\n\n
\n", "signature": "(max_sides=12, max_length=120):", "funcdef": "def"}, "mathgenerator.geometry.pythagorean_theorem": {"fullname": "mathgenerator.geometry.pythagorean_theorem", "modulename": "mathgenerator.geometry", "qualname": "pythagorean_theorem", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nThe perimeter of a $4$ sided polygon with lengths of $30, 105, 78, 106$cm is: \n$319$ \nPythagorean Theorem
\n\n\n\n
\n", "signature": "(max_length=20):", "funcdef": "def"}, "mathgenerator.geometry.radian_to_deg": {"fullname": "mathgenerator.geometry.radian_to_deg", "modulename": "mathgenerator.geometry", "qualname": "radian_to_deg", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nWhat is the hypotenuse of a right triangle given the other two sides have lengths $9$ and $10$? \n$13.45$ \nRadians to Degrees
\n", "signature": "(max_rad=6.28):", "funcdef": "def"}, "mathgenerator.geometry.sector_area": {"fullname": "mathgenerator.geometry.sector_area", "modulename": "mathgenerator.geometry", "qualname": "sector_area", "kind": "function", "doc": "Area of a Sector
\n\n\n\n
\n", "signature": "(max_radius=49, max_angle=359):", "funcdef": "def"}, "mathgenerator.geometry.sum_of_polygon_angles": {"fullname": "mathgenerator.geometry.sum_of_polygon_angles", "modulename": "mathgenerator.geometry", "qualname": "sum_of_polygon_angles", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nWhat is the area of a sector with radius $42$ and angle $83$ degrees? \n$1277.69$ \nSum of Angles of Polygon
\n\n\n\n
\n", "signature": "(max_sides=12):", "funcdef": "def"}, "mathgenerator.geometry.surface_area_cone": {"fullname": "mathgenerator.geometry.surface_area_cone", "modulename": "mathgenerator.geometry", "qualname": "surface_area_cone", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nWhat is the sum of interior angles of a polygon with $8$ sides? \n$1080$ \nSurface area of a cone
\n\n\n\n
\n", "signature": "(max_radius=20, max_height=50, unit='m'):", "funcdef": "def"}, "mathgenerator.geometry.surface_area_cube": {"fullname": "mathgenerator.geometry.surface_area_cube", "modulename": "mathgenerator.geometry", "qualname": "surface_area_cube", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nSurface area of cone with height $= 26m$ and radius $= 6m$ is \n$616 m^2$ \nSurface area of a cube
\n\n\n\n
\n", "signature": "(max_side=20, unit='m'):", "funcdef": "def"}, "mathgenerator.geometry.surface_area_cuboid": {"fullname": "mathgenerator.geometry.surface_area_cuboid", "modulename": "mathgenerator.geometry", "qualname": "surface_area_cuboid", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nSurface area of cube with side $= 6m$ is \n$216 m^2$ \nSurface area of a cuboid
\n\n\n\n
\n", "signature": "(max_side=20, unit='m'):", "funcdef": "def"}, "mathgenerator.geometry.surface_area_cylinder": {"fullname": "mathgenerator.geometry.surface_area_cylinder", "modulename": "mathgenerator.geometry", "qualname": "surface_area_cylinder", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nSurface area of cuboid with sides of lengths: $11m, 20m, 8m$ is \n$936 m^2$ \nSurface area of a cylinder
\n\n\n\n
\n", "signature": "(max_radius=20, max_height=50, unit='m'):", "funcdef": "def"}, "mathgenerator.geometry.surface_area_pyramid": {"fullname": "mathgenerator.geometry.surface_area_pyramid", "modulename": "mathgenerator.geometry", "qualname": "surface_area_pyramid", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nSurface area of cylinder with height $= 26m$ and radius $= 15m$ is \n$3864 m^2$ \nSurface area of a pyramid
\n\n\n\n
\n", "signature": "(unit='m'):", "funcdef": "def"}, "mathgenerator.geometry.surface_area_sphere": {"fullname": "mathgenerator.geometry.surface_area_sphere", "modulename": "mathgenerator.geometry", "qualname": "surface_area_sphere", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nSurface area of pyramid with base length $= 30m$, base width $= 40m$, and height $= 25m$ is \n$2400 m^2$ \nSurface area of a sphere
\n\n\n\n
\n", "signature": "(max_side=20, unit='m'):", "funcdef": "def"}, "mathgenerator.geometry.third_angle_of_triangle": {"fullname": "mathgenerator.geometry.third_angle_of_triangle", "modulename": "mathgenerator.geometry", "qualname": "third_angle_of_triangle", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nSurface area of a sphere with radius $= 8m$ is \n$804.25 m^2$ \nThird Angle of Triangle
\n\n\n\n
\n", "signature": "(max_angle=89):", "funcdef": "def"}, "mathgenerator.geometry.valid_triangle": {"fullname": "mathgenerator.geometry.valid_triangle", "modulename": "mathgenerator.geometry", "qualname": "valid_triangle", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nThird angle of triangle with angles $10$ and $22 =$ \n$148$ \nValid Triangle
\n\n\n\n
\n", "signature": "(max_side_length=50):", "funcdef": "def"}, "mathgenerator.geometry.volume_cone": {"fullname": "mathgenerator.geometry.volume_cone", "modulename": "mathgenerator.geometry", "qualname": "volume_cone", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nDoes triangel with sides $10, 31$ and $14$ exist? \nNo \nVolume of a cone
\n\n\n\n
\n", "signature": "(max_radius=20, max_height=50, unit='m'):", "funcdef": "def"}, "mathgenerator.geometry.volume_cube": {"fullname": "mathgenerator.geometry.volume_cube", "modulename": "mathgenerator.geometry", "qualname": "volume_cube", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nVolume of cone with height $= 44m$ and radius $= 11m$ is \n$5575 m^3$ \nVolume of a cube\n| Ex. Problem | Ex. Solution |\n| --- | --- |\n| Volume of a cube with a side length of $19m$ is | $6859 m^3$ |
\n", "signature": "(max_side=20, unit='m'):", "funcdef": "def"}, "mathgenerator.geometry.volume_cuboid": {"fullname": "mathgenerator.geometry.volume_cuboid", "modulename": "mathgenerator.geometry", "qualname": "volume_cuboid", "kind": "function", "doc": "Volume of a cuboid
\n\n\n\n
\n", "signature": "(max_side=20, unit='m'):", "funcdef": "def"}, "mathgenerator.geometry.volume_cylinder": {"fullname": "mathgenerator.geometry.volume_cylinder", "modulename": "mathgenerator.geometry", "qualname": "volume_cylinder", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nVolume of cuboid with sides = $17m, 11m, 13m$ is \n$2431 m^3$ \nVolume of a cylinder
\n\n\n\n
\n", "signature": "(max_radius=20, max_height=50, unit='m'):", "funcdef": "def"}, "mathgenerator.geometry.volume_cone_frustum": {"fullname": "mathgenerator.geometry.volume_cone_frustum", "modulename": "mathgenerator.geometry", "qualname": "volume_cone_frustum", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nVolume of cylinder with height $= 3m$ and radius $= 10m$ is \n$942 m^3$ \nVolume of the frustum of a cone
\n\n\n\n
\n", "signature": "(max_r1=20, max_r2=20, max_height=50, unit='m'):", "funcdef": "def"}, "mathgenerator.geometry.volume_hemisphere": {"fullname": "mathgenerator.geometry.volume_hemisphere", "modulename": "mathgenerator.geometry", "qualname": "volume_hemisphere", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nVolume of frustum with height $= 30m$ and $r1 = 20m$ is and $r2 = 8m$ is \n$19603.54 m^3$ \nVolume of a hemisphere
\n\n\n\n
\n", "signature": "(max_radius=100):", "funcdef": "def"}, "mathgenerator.geometry.volume_pyramid": {"fullname": "mathgenerator.geometry.volume_pyramid", "modulename": "mathgenerator.geometry", "qualname": "volume_pyramid", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nVolume of hemisphere with radius $32m =$ \n$68629.14 m^3$ \nVolume of a pyramid
\n\n\n\n
\n", "signature": "(max_length=20, max_width=20, max_height=50, unit='m'):", "funcdef": "def"}, "mathgenerator.geometry.volume_sphere": {"fullname": "mathgenerator.geometry.volume_sphere", "modulename": "mathgenerator.geometry", "qualname": "volume_sphere", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nVolume of pyramid with base length $= 7 m$, base width $= 18 m$ and height $= 42 m$ is \n$1764.0 m^3$ \nVolume of a sphere
\n\n\n\n
\n", "signature": "(max_radius=100):", "funcdef": "def"}, "mathgenerator.misc": {"fullname": "mathgenerator.misc", "modulename": "mathgenerator.misc", "kind": "module", "doc": "\n"}, "mathgenerator.misc.arithmetic_progression_sum": {"fullname": "mathgenerator.misc.arithmetic_progression_sum", "modulename": "mathgenerator.misc", "qualname": "arithmetic_progression_sum", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nVolume of sphere with radius $30 m = $ \n$113097.36 m^3$ \nArithmetic Progression Sum
\n\n\n\n
\n", "signature": "(max_d=100, max_a=100, max_n=100):", "funcdef": "def"}, "mathgenerator.misc.arithmetic_progression_term": {"fullname": "mathgenerator.misc.arithmetic_progression_term", "modulename": "mathgenerator.misc", "qualname": "arithmetic_progression_term", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nFind the sum of first $44$ terms of the AP series: $49, 145, 241 ... $ \n$92972.0$ \nArithmetic Progression Term
\n\n\n\n
\n", "signature": "(max_d=100, max_a=100, max_n=100):", "funcdef": "def"}, "mathgenerator.misc.base_conversion": {"fullname": "mathgenerator.misc.base_conversion", "modulename": "mathgenerator.misc", "qualname": "base_conversion", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nFind term number $12$ of the AP series: $-54, 24, 102 ... $ \n$804$ \nBase Conversion
\n\n\n\n
\n", "signature": "(max_num=60000, max_base=16):", "funcdef": "def"}, "mathgenerator.misc.binomial_distribution": {"fullname": "mathgenerator.misc.binomial_distribution", "modulename": "mathgenerator.misc", "qualname": "binomial_distribution", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nConvert $45204$ from base $10$ to base $4$ \n$23002110$ \nBinomial distribution
\n\n\n\n
\n", "signature": "():", "funcdef": "def"}, "mathgenerator.misc.celsius_to_fahrenheit": {"fullname": "mathgenerator.misc.celsius_to_fahrenheit", "modulename": "mathgenerator.misc", "qualname": "celsius_to_fahrenheit", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nA manufacturer of metal pistons finds that, on average, $30.56$% of the pistons they manufacture are rejected because they are incorrectly sized. What is the probability that a batch of $20$ pistons will contain no more than $2$ rejected pistons? \n$3.17$ \nCelsius to Fahrenheit
\n\n\n\n
\n", "signature": "(max_temp=100):", "funcdef": "def"}, "mathgenerator.misc.common_factors": {"fullname": "mathgenerator.misc.common_factors", "modulename": "mathgenerator.misc", "qualname": "common_factors", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nConvert $-46$ degrees Celsius to degrees Fahrenheit \n$-50.8$ \nCommon Factors
\n\n\n\n
\n", "signature": "(max_val=100):", "funcdef": "def"}, "mathgenerator.misc.complex_to_polar": {"fullname": "mathgenerator.misc.complex_to_polar", "modulename": "mathgenerator.misc", "qualname": "complex_to_polar", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nCommon Factors of $100$ and $44 = $ \n$[1, 2, 4]$ \nComplex to polar form
\n\n\n\n
\n", "signature": "(min_real_imaginary_num=-20, max_real_imaginary_num=20):", "funcdef": "def"}, "mathgenerator.misc.decimal_to_roman_numerals": {"fullname": "mathgenerator.misc.decimal_to_roman_numerals", "modulename": "mathgenerator.misc", "qualname": "decimal_to_roman_numerals", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n$19.42(-19.0\\theta + i-4.0\\theta)$ \n$-2.93$ \nDecimal to Roman Numerals
\n\n\n\n
\n", "signature": "(max_decimal=4000):", "funcdef": "def"}, "mathgenerator.misc.euclidian_norm": {"fullname": "mathgenerator.misc.euclidian_norm", "modulename": "mathgenerator.misc", "qualname": "euclidian_norm", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nThe number $92$ in roman numerals is: \n$XCII$ \nEuclidian norm or L2 norm of a vector
\n\n\n\n
\n", "signature": "(maxEltAmt=20):", "funcdef": "def"}, "mathgenerator.misc.factors": {"fullname": "mathgenerator.misc.factors", "modulename": "mathgenerator.misc", "qualname": "factors", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nEuclidian norm or L2 norm of the vector $[659.9225071540442, 243.40887829281564, 128.79950053874424, 263.19226900031344]$ is: \n$761.97$ \nFactors of a number
\n\n\n\n
\n", "signature": "(max_val=1000):", "funcdef": "def"}, "mathgenerator.misc.geometric_mean": {"fullname": "mathgenerator.misc.geometric_mean", "modulename": "mathgenerator.misc", "qualname": "geometric_mean", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nFactors of $176 = $ \n$[1, 2, 4, 8, 11, 16, 22, 44, 88, 176]$ \nGeometric Mean of N Numbers
\n\n\n\n
\n", "signature": "(max_value=100, max_count=4):", "funcdef": "def"}, "mathgenerator.misc.geometric_progression": {"fullname": "mathgenerator.misc.geometric_progression", "modulename": "mathgenerator.misc", "qualname": "geometric_progression", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nGeometric mean of $3$ numbers $[72, 21, 87] = $ \n$50.86$ \nGeometric Progression
\n\n\n\n
\n", "signature": "(number_values=6, min_value=2, max_value=12, n_term=7, sum_term=5):", "funcdef": "def"}, "mathgenerator.misc.harmonic_mean": {"fullname": "mathgenerator.misc.harmonic_mean", "modulename": "mathgenerator.misc", "qualname": "harmonic_mean", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nFor the given GP $[11, 44, 176, 704, 2816, 11264]$. Find the value of a common ratio, 7th term value, sum upto 10th term \nThe value of a is $11$, common ratio is $4$ , 7th term is $45056$, sum upto 10th term is $3844775.0$ \nHarmonic Mean of N Numbers
\n\n\n\n
\n", "signature": "(max_value=100, max_count=4):", "funcdef": "def"}, "mathgenerator.misc.is_leap_year": {"fullname": "mathgenerator.misc.is_leap_year", "modulename": "mathgenerator.misc", "qualname": "is_leap_year", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nHarmonic mean of $4$ numbers $52, 56, 25, 57 = $ \n$602.33$ \nIs Leap Year or Not
\n\n\n\n
\n", "signature": "(minNumber=1900, max_number=2099):", "funcdef": "def"}, "mathgenerator.misc.lcm": {"fullname": "mathgenerator.misc.lcm", "modulename": "mathgenerator.misc", "qualname": "lcm", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nIs $2000$ a leap year? \n$2000$ is a leap year \nLCM (Least Common Multiple)
\n\n\n\n
\n", "signature": "(max_val=20):", "funcdef": "def"}, "mathgenerator.misc.minutes_to_hours": {"fullname": "mathgenerator.misc.minutes_to_hours", "modulename": "mathgenerator.misc", "qualname": "minutes_to_hours", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nLCM of $3$ and $18 = $ \n$18$ \nConvert minutes to hours and minutes
\n\n\n\n
\n", "signature": "(max_minutes=999):", "funcdef": "def"}, "mathgenerator.misc.prime_factors": {"fullname": "mathgenerator.misc.prime_factors", "modulename": "mathgenerator.misc", "qualname": "prime_factors", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nConvert $836$ minutes to hours & minutes \n$13$ hours and $56$ minutes \nPrime Factors
\n\n\n\n
\n", "signature": "(min_val=1, max_val=200):", "funcdef": "def"}, "mathgenerator.misc.product_of_scientific_notations": {"fullname": "mathgenerator.misc.product_of_scientific_notations", "modulename": "mathgenerator.misc", "qualname": "product_of_scientific_notations", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nFind prime factors of $30$ \n$2, 3, 5$ \nProduct of scientific notations
\n\n\n\n
\n", "signature": "(min_exp_val=-100, max_exp_val=100):", "funcdef": "def"}, "mathgenerator.misc.profit_loss_percent": {"fullname": "mathgenerator.misc.profit_loss_percent", "modulename": "mathgenerator.misc", "qualname": "profit_loss_percent", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nProduct of scientific notations $5.11 \\times 10^{67}$ and $3.64 \\times 10^{-59} = $ \n$1.86 \\times 10^{9}$ \nProfit or Loss Percent
\n\n\n\n
\n", "signature": "(max_cp=1000, max_sp=1000):", "funcdef": "def"}, "mathgenerator.misc.quotient_of_power_same_base": {"fullname": "mathgenerator.misc.quotient_of_power_same_base", "modulename": "mathgenerator.misc", "qualname": "quotient_of_power_same_base", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nLoss percent when $CP = 751$ and $SP = 290$ is: \n$61.38$ \nQuotient of Powers with Same Base
\n\n\n\n
\n", "signature": "(max_base=50, max_power=10):", "funcdef": "def"}, "mathgenerator.misc.quotient_of_power_same_power": {"fullname": "mathgenerator.misc.quotient_of_power_same_power", "modulename": "mathgenerator.misc", "qualname": "quotient_of_power_same_power", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nThe Quotient of $5^{6}$ and $5^{8} = $5^{6-8} = 5^{-2}$ \n$0.04$ \nQuotient of Powers with Same Power
\n\n\n\n
\n", "signature": "(max_base=50, max_power=10):", "funcdef": "def"}, "mathgenerator.misc.set_operation": {"fullname": "mathgenerator.misc.set_operation", "modulename": "mathgenerator.misc", "qualname": "set_operation", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nThe quotient of $19^{8}$ and $10^{8} = (19/10)^8 = 1.9^{8}$ \n$169.84$ \nUnion, Intersection, Difference of Two Sets
\n\n\n\n
\n", "signature": "(min_size=3, max_size=7):", "funcdef": "def"}, "mathgenerator.misc.signum_function": {"fullname": "mathgenerator.misc.signum_function", "modulename": "mathgenerator.misc", "qualname": "signum_function", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nGiven the two sets $a={1, 2, 4, 5}$, $b={8, 1, 2}. Find the Union, intersection, a-b, b-a, and symmetric difference \nUnion is ${1, 2, 4, 5, 8}$. Intersection is ${1, 2}$, a-b is ${4, 5}$, b-a is ${8}$. Symmetric difference is ${4, 5, 8}$. \nSignum Function
\n\n\n\n
\n", "signature": "(min=-999, max=999):", "funcdef": "def"}, "mathgenerator.misc.surds_comparison": {"fullname": "mathgenerator.misc.surds_comparison", "modulename": "mathgenerator.misc", "qualname": "surds_comparison", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nSignum of $-229$ is = \n$-1$ \nComparing Surds
\n\n\n\n
\n", "signature": "(max_value=100, max_root=10):", "funcdef": "def"}, "mathgenerator.statistics": {"fullname": "mathgenerator.statistics", "modulename": "mathgenerator.statistics", "kind": "module", "doc": "\n"}, "mathgenerator.statistics.combinations": {"fullname": "mathgenerator.statistics.combinations", "modulename": "mathgenerator.statistics", "qualname": "combinations", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nFill in the blanks $42^{\\frac{1}{2}}$ _ $45^{\\frac{1}{5}}$ \n$>$ \nCombinations of Objects
\n\n\n\n
\n", "signature": "(max_lengthgth=20):", "funcdef": "def"}, "mathgenerator.statistics.conditional_probability": {"fullname": "mathgenerator.statistics.conditional_probability", "modulename": "mathgenerator.statistics", "qualname": "conditional_probability", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nFind the number of combinations from $19$ objects picked $6$ at a time. \n$27132$ \nConditional Probability
\n\n\n\n
\n", "signature": "():", "funcdef": "def"}, "mathgenerator.statistics.confidence_interval": {"fullname": "mathgenerator.statistics.confidence_interval", "modulename": "mathgenerator.statistics", "qualname": "confidence_interval", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nSomeone tested positive for a nasty disease which only $1.18$% of the population have. Test sensitivity (true positive) is equal to $SN=98.73$% whereas test specificity (true negative) $SP=99.99$%. What is the probability that this guy really has that disease? \n$99.16$% \nConfidence interval For sample S
\n\n\n\n
\n", "signature": "():", "funcdef": "def"}, "mathgenerator.statistics.data_summary": {"fullname": "mathgenerator.statistics.data_summary", "modulename": "mathgenerator.statistics", "qualname": "data_summary", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nThe confidence interval for sample $[234, 223, 210, 203, 258, 299, 281, 208, 278, 252, 295, 245, 280, 235, 219, 297, 214, 267, 212, 256, 232, 221]$ with $99$% confidence is \n$(263.31, 229.33)$ \nMean, Standard Deviation and Variance
\n\n\n\n
\n", "signature": "(number_values=15, min_val=5, max_val=50):", "funcdef": "def"}, "mathgenerator.statistics.dice_sum_probability": {"fullname": "mathgenerator.statistics.dice_sum_probability", "modulename": "mathgenerator.statistics", "qualname": "dice_sum_probability", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nFind the mean,standard deviation and variance for the data $9, 29, 46, 27, 46, 15, 10, 44, 19, 33, 38, 7, 34, 28, 8$ \nThe Mean is $26.2$, Standard Deviation is $186.29$, Variance is $13.65$ \nProbability of a certain sum appearing on faces of dice
\n\n\n\n
\n", "signature": "(max_dice=3):", "funcdef": "def"}, "mathgenerator.statistics.mean_median": {"fullname": "mathgenerator.statistics.mean_median", "modulename": "mathgenerator.statistics", "qualname": "mean_median", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nIf $2$ dice are rolled at the same time, the probability of getting a sum of $5 =$ \n$\frac{4}{36}$ \nMean and Median
\n\n\n\n
\n", "signature": "(max_length=10):", "funcdef": "def"}, "mathgenerator.statistics.permutation": {"fullname": "mathgenerator.statistics.permutation", "modulename": "mathgenerator.statistics", "qualname": "permutation", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nGiven the series of numbers $[4, 19, 21, 22, 43, 44, 60, 81, 87, 92]$. Find the arithmatic mean and median of the series \nArithmetic mean of the series is $47.3$ and arithmetic median of this series is $43.5$ \nPermutations
\n\n\n\n
\n", "signature": "(max_lengthgth=20):", "funcdef": "def"}}, "docInfo": {"mathgenerator": {"qualname": 0, "fullname": 1, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 563}, "mathgenerator.get_gen_list": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "mathgenerator.gen_by_id": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 25, "bases": 0, "doc": 3}, "mathgenerator.getGenList": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "mathgenerator.genById": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 25, "bases": 0, "doc": 3}, "mathgenerator.algebra": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "mathgenerator.algebra.basic_algebra": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 41}, "mathgenerator.algebra.combine_like_terms": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 51}, "mathgenerator.algebra.complex_quadratic": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 65}, "mathgenerator.algebra.compound_interest": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 62}, "mathgenerator.algebra.distance_two_points": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 30, "bases": 0, "doc": 52}, "mathgenerator.algebra.expanding": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 50, "bases": 0, "doc": 44}, "mathgenerator.algebra.factoring": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 66}, "mathgenerator.algebra.int_matrix_22_determinant": {"qualname": 4, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 18, "bases": 0, "doc": 50}, "mathgenerator.algebra.intersection_of_two_lines": {"qualname": 4, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 78, "bases": 0, "doc": 61}, "mathgenerator.algebra.invert_matrix": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 48, "bases": 0, "doc": 78}, "mathgenerator.algebra.linear_equations": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 38, "bases": 0, "doc": 58}, "mathgenerator.algebra.log": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 40}, "mathgenerator.algebra.matrix_multiplication": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 166}, "mathgenerator.algebra.midpoint_of_two_points": {"qualname": 4, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 56}, "mathgenerator.algebra.multiply_complex_numbers": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 32, "bases": 0, "doc": 47}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"qualname": 5, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 60}, "mathgenerator.algebra.quadratic_equation": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 51}, "mathgenerator.algebra.simple_interest": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 62}, "mathgenerator.algebra.system_of_equations": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 40, "bases": 0, "doc": 62}, "mathgenerator.algebra.vector_cross": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 52}, "mathgenerator.algebra.vector_dot": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 48}, "mathgenerator.basic_math": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "mathgenerator.basic_math.absolute_difference": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 49}, "mathgenerator.basic_math.addition": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 41}, "mathgenerator.basic_math.compare_fractions": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 48}, "mathgenerator.basic_math.cube_root": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 49}, "mathgenerator.basic_math.divide_fractions": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 39}, "mathgenerator.basic_math.division": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 38}, "mathgenerator.basic_math.exponentiation": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 38}, "mathgenerator.basic_math.factorial": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 38}, "mathgenerator.basic_math.fraction_multiplication": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 39}, "mathgenerator.basic_math.fraction_to_decimal": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 41}, "mathgenerator.basic_math.greatest_common_divisor": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 49}, "mathgenerator.basic_math.is_composite": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 40}, "mathgenerator.basic_math.is_prime": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 40}, "mathgenerator.basic_math.multiplication": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 38}, "mathgenerator.basic_math.percentage": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 45}, "mathgenerator.basic_math.percentage_difference": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 50}, "mathgenerator.basic_math.percentage_error": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 53}, "mathgenerator.basic_math.power_of_powers": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 40}, "mathgenerator.basic_math.square": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 18, "bases": 0, "doc": 38}, "mathgenerator.basic_math.square_root": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 39}, "mathgenerator.basic_math.simplify_square_root": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 39}, "mathgenerator.basic_math.subtraction": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 42}, "mathgenerator.calculus": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "mathgenerator.calculus.definite_integral": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 58}, "mathgenerator.calculus.power_rule_differentiation": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 48}, "mathgenerator.calculus.power_rule_integration": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 50}, "mathgenerator.calculus.stationary_points": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 53}, "mathgenerator.calculus.trig_differentiation": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 43}, "mathgenerator.computer_science": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "mathgenerator.computer_science.bcd_to_decimal": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 47}, "mathgenerator.computer_science.binary_2s_complement": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 45}, "mathgenerator.computer_science.binary_complement_1s": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 40}, "mathgenerator.computer_science.binary_to_decimal": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 39}, "mathgenerator.computer_science.binary_to_hex": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 39}, "mathgenerator.computer_science.decimal_to_bcd": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 46}, "mathgenerator.computer_science.decimal_to_binary": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 42}, "mathgenerator.computer_science.decimal_to_hexadeci": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 42}, "mathgenerator.computer_science.decimal_to_octal": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 45}, "mathgenerator.computer_science.fibonacci_series": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 55}, "mathgenerator.computer_science.modulo_division": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 41}, "mathgenerator.computer_science.nth_fibonacci_number": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 44}, "mathgenerator.geometry": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "mathgenerator.geometry.angle_btw_vectors": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 18, "bases": 0, "doc": 123}, "mathgenerator.geometry.angle_regular_polygon": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 51}, "mathgenerator.geometry.arc_length": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 60}, "mathgenerator.geometry.area_of_circle": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 46}, "mathgenerator.geometry.area_of_circle_given_center_and_point": {"qualname": 7, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 65}, "mathgenerator.geometry.area_of_triangle": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 49}, "mathgenerator.geometry.basic_trigonometry": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 82, "bases": 0, "doc": 40}, "mathgenerator.geometry.circumference": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 46}, "mathgenerator.geometry.complementary_and_supplementary_angle": {"qualname": 4, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 45}, "mathgenerator.geometry.curved_surface_area_cylinder": {"qualname": 4, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 57}, "mathgenerator.geometry.degree_to_rad": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 45}, "mathgenerator.geometry.equation_of_line_from_two_points": {"qualname": 6, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 65}, "mathgenerator.geometry.fourth_angle_of_quadrilateral": {"qualname": 4, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 49}, "mathgenerator.geometry.perimeter_of_polygons": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 53}, "mathgenerator.geometry.pythagorean_theorem": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 56}, "mathgenerator.geometry.radian_to_deg": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 18, "bases": 0, "doc": 5}, "mathgenerator.geometry.sector_area": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 54}, "mathgenerator.geometry.sum_of_polygon_angles": {"qualname": 4, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 53}, "mathgenerator.geometry.surface_area_cone": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 42, "bases": 0, "doc": 54}, "mathgenerator.geometry.surface_area_cube": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 31, "bases": 0, "doc": 50}, "mathgenerator.geometry.surface_area_cuboid": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 31, "bases": 0, "doc": 53}, "mathgenerator.geometry.surface_area_cylinder": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 42, "bases": 0, "doc": 54}, "mathgenerator.geometry.surface_area_pyramid": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 20, "bases": 0, "doc": 59}, "mathgenerator.geometry.surface_area_sphere": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 31, "bases": 0, "doc": 52}, "mathgenerator.geometry.third_angle_of_triangle": {"qualname": 4, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 49}, "mathgenerator.geometry.valid_triangle": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 18, "bases": 0, "doc": 46}, "mathgenerator.geometry.volume_cone": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 42, "bases": 0, "doc": 52}, "mathgenerator.geometry.volume_cube": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 31, "bases": 0, "doc": 32}, "mathgenerator.geometry.volume_cuboid": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 31, "bases": 0, "doc": 49}, "mathgenerator.geometry.volume_cylinder": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 42, "bases": 0, "doc": 52}, "mathgenerator.geometry.volume_cone_frustum": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 53, "bases": 0, "doc": 59}, "mathgenerator.geometry.volume_hemisphere": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 48}, "mathgenerator.geometry.volume_pyramid": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 53, "bases": 0, "doc": 61}, "mathgenerator.geometry.volume_sphere": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 49}, "mathgenerator.misc": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "mathgenerator.misc.arithmetic_progression_sum": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 54}, "mathgenerator.misc.arithmetic_progression_term": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 51}, "mathgenerator.misc.base_conversion": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 45}, "mathgenerator.misc.binomial_distribution": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 79}, "mathgenerator.misc.celsius_to_fahrenheit": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 48}, "mathgenerator.misc.common_factors": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 46}, "mathgenerator.misc.complex_to_polar": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 32, "bases": 0, "doc": 50}, "mathgenerator.misc.decimal_to_roman_numerals": {"qualname": 4, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 46}, "mathgenerator.misc.euclidian_norm": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 61}, "mathgenerator.misc.factors": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 52}, "mathgenerator.misc.geometric_mean": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 50}, "mathgenerator.misc.geometric_progression": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 61, "bases": 0, "doc": 81}, "mathgenerator.misc.harmonic_mean": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 51}, "mathgenerator.misc.is_leap_year": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 27, "bases": 0, "doc": 49}, "mathgenerator.misc.lcm": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 46}, "mathgenerator.misc.minutes_to_hours": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 52}, "mathgenerator.misc.prime_factors": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 44}, "mathgenerator.misc.product_of_scientific_notations": {"qualname": 4, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 30, "bases": 0, "doc": 57}, "mathgenerator.misc.profit_loss_percent": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 49}, "mathgenerator.misc.quotient_of_power_same_base": {"qualname": 5, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 52}, "mathgenerator.misc.quotient_of_power_same_power": {"qualname": 5, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 52}, "mathgenerator.misc.set_operation": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 91}, "mathgenerator.misc.signum_function": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 26, "bases": 0, "doc": 44}, "mathgenerator.misc.surds_comparison": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 45}, "mathgenerator.statistics": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "mathgenerator.statistics.combinations": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 52}, "mathgenerator.statistics.conditional_probability": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 82}, "mathgenerator.statistics.confidence_interval": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 76}, "mathgenerator.statistics.data_summary": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 78}, "mathgenerator.statistics.dice_sum_probability": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 64}, "mathgenerator.statistics.mean_median": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 78}, "mathgenerator.statistics.permutation": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 48}}, "length": 137, "save": true}, "index": {"qualname": {"root": {"1": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.computer_science.binary_complement_1s": {"tf": 1}}, "df": 1}}, "2": {"2": {"docs": {"mathgenerator.algebra.int_matrix_22_determinant": {"tf": 1}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0, "s": {"docs": {"mathgenerator.computer_science.binary_2s_complement": {"tf": 1}}, "df": 1}}, "docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.get_gen_list": {"tf": 1}}, "df": 1, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.getGenList": {"tf": 1}}, "df": 1}}}}}}}}, "n": {"docs": {"mathgenerator.get_gen_list": {"tf": 1}, "mathgenerator.gen_by_id": {"tf": 1}}, "df": 2, "b": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.genById": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"mathgenerator.misc.geometric_mean": {"tf": 1}, "mathgenerator.misc.geometric_progression": {"tf": 1}}, "df": 2}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.basic_math.greatest_common_divisor": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.get_gen_list": {"tf": 1}}, "df": 1}}, "k": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.algebra.combine_like_terms": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}}, "df": 1, "s": {"docs": {"mathgenerator.algebra.intersection_of_two_lines": {"tf": 1}}, "df": 1}, "a": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.algebra.linear_equations": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "g": {"docs": {"mathgenerator.algebra.log": {"tf": 1}}, "df": 1}, "s": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.misc.profit_loss_percent": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"mathgenerator.geometry.arc_length": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {"mathgenerator.misc.is_leap_year": {"tf": 1}}, "df": 1}}}, "c": {"docs": {}, "df": 0, "m": {"docs": {"mathgenerator.misc.lcm": {"tf": 1}}, "df": 1}}}, "b": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.gen_by_id": {"tf": 1}}, "df": 1}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"mathgenerator.algebra.basic_algebra": {"tf": 1}, "mathgenerator.geometry.basic_trigonometry": {"tf": 1}}, "df": 2}}, "e": {"docs": {"mathgenerator.misc.base_conversion": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_base": {"tf": 1}}, "df": 2}}}, "c": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.computer_science.bcd_to_decimal": {"tf": 1}, "mathgenerator.computer_science.decimal_to_bcd": {"tf": 1}}, "df": 2}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.computer_science.binary_2s_complement": {"tf": 1}, "mathgenerator.computer_science.binary_complement_1s": {"tf": 1}, "mathgenerator.computer_science.binary_to_decimal": {"tf": 1}, "mathgenerator.computer_science.binary_to_hex": {"tf": 1}, "mathgenerator.computer_science.decimal_to_binary": {"tf": 1}}, "df": 5}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator.misc.binomial_distribution": {"tf": 1}}, "df": 1}}}}}}}, "t": {"docs": {}, "df": 0, "w": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.gen_by_id": {"tf": 1}}, "df": 1}, "n": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.algebra.int_matrix_22_determinant": {"tf": 1}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.algebra.compound_interest": {"tf": 1}, "mathgenerator.algebra.simple_interest": {"tf": 1}}, "df": 2}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.algebra.intersection_of_two_lines": {"tf": 1}}, "df": 1}}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator.statistics.confidence_interval": {"tf": 1}}, "df": 1}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator.calculus.definite_integral": {"tf": 1}}, "df": 1}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.calculus.power_rule_integration": {"tf": 1}}, "df": 1}}}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.algebra.invert_matrix": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {"mathgenerator.basic_math.is_composite": {"tf": 1}, "mathgenerator.basic_math.is_prime": {"tf": 1}, "mathgenerator.misc.is_leap_year": {"tf": 1}}, "df": 3}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {"mathgenerator.algebra.basic_algebra": {"tf": 1}}, "df": 1}}}}}}, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.basic_math.absolute_difference": {"tf": 1}}, "df": 1}}}}}}}, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.basic_math.addition": {"tf": 1}}, "df": 1}}}}}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}, "mathgenerator.geometry.angle_regular_polygon": {"tf": 1}, "mathgenerator.geometry.complementary_and_supplementary_angle": {"tf": 1}, "mathgenerator.geometry.fourth_angle_of_quadrilateral": {"tf": 1}, "mathgenerator.geometry.third_angle_of_triangle": {"tf": 1}}, "df": 5, "s": {"docs": {"mathgenerator.geometry.sum_of_polygon_angles": {"tf": 1}}, "df": 1}}}}, "d": {"docs": {"mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1}, "mathgenerator.geometry.complementary_and_supplementary_angle": {"tf": 1}}, "df": 2}}, "r": {"docs": {}, "df": 0, "c": {"docs": {"mathgenerator.geometry.arc_length": {"tf": 1}}, "df": 1}, "e": {"docs": {}, "df": 0, "a": {"docs": {"mathgenerator.geometry.area_of_circle": {"tf": 1}, "mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1}, "mathgenerator.geometry.area_of_triangle": {"tf": 1}, "mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.sector_area": {"tf": 1}, "mathgenerator.geometry.surface_area_cone": {"tf": 1}, "mathgenerator.geometry.surface_area_cube": {"tf": 1}, "mathgenerator.geometry.surface_area_cuboid": {"tf": 1}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.surface_area_pyramid": {"tf": 1}, "mathgenerator.geometry.surface_area_sphere": {"tf": 1}}, "df": 11}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"mathgenerator.misc.arithmetic_progression_sum": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_term": {"tf": 1}}, "df": 2}}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.algebra.combine_like_terms": {"tf": 1}}, "df": 1}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.statistics.combinations": {"tf": 1}}, "df": 1}}}}}}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"mathgenerator.algebra.complex_quadratic": {"tf": 1}, "mathgenerator.algebra.multiply_complex_numbers": {"tf": 1}, "mathgenerator.misc.complex_to_polar": {"tf": 1}}, "df": 3}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.computer_science.binary_2s_complement": {"tf": 1}, "mathgenerator.computer_science.binary_complement_1s": {"tf": 1}}, "df": 2, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.geometry.complementary_and_supplementary_angle": {"tf": 1}}, "df": 1}}}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.algebra.compound_interest": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.basic_math.is_composite": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.basic_math.compare_fractions": {"tf": 1}}, "df": 1}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.misc.surds_comparison": {"tf": 1}}, "df": 1}}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.basic_math.greatest_common_divisor": {"tf": 1}, "mathgenerator.misc.common_factors": {"tf": 1}}, "df": 2}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.surface_area_cone": {"tf": 1}, "mathgenerator.geometry.volume_cone": {"tf": 1}, "mathgenerator.geometry.volume_cone_frustum": {"tf": 1}}, "df": 3}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.misc.base_conversion": {"tf": 1}}, "df": 1}}}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator.statistics.conditional_probability": {"tf": 1}}, "df": 1}}}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.statistics.confidence_interval": {"tf": 1}}, "df": 1}}}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.algebra.vector_cross": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.basic_math.cube_root": {"tf": 1}, "mathgenerator.geometry.surface_area_cube": {"tf": 1}, "mathgenerator.geometry.volume_cube": {"tf": 1}}, "df": 3}, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.geometry.surface_area_cuboid": {"tf": 1}, "mathgenerator.geometry.volume_cuboid": {"tf": 1}}, "df": 2}}}}, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.area_of_circle": {"tf": 1}, "mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1}}, "df": 2}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.circumference": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.misc.celsius_to_fahrenheit": {"tf": 1}}, "df": 1}}}}}}, "y": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.volume_cylinder": {"tf": 1}}, "df": 3}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"mathgenerator.misc.arithmetic_progression_term": {"tf": 1}}, "df": 1, "s": {"docs": {"mathgenerator.algebra.combine_like_terms": {"tf": 1}}, "df": 1}}}}, "w": {"docs": {}, "df": 0, "o": {"docs": {"mathgenerator.algebra.distance_two_points": {"tf": 1}, "mathgenerator.algebra.intersection_of_two_lines": {"tf": 1}, "mathgenerator.algebra.midpoint_of_two_points": {"tf": 1}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}}, "df": 4}}, "o": {"docs": {"mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1}, "mathgenerator.basic_math.fraction_to_decimal": {"tf": 1}, "mathgenerator.computer_science.bcd_to_decimal": {"tf": 1}, "mathgenerator.computer_science.binary_to_decimal": {"tf": 1}, "mathgenerator.computer_science.binary_to_hex": {"tf": 1}, "mathgenerator.computer_science.decimal_to_bcd": {"tf": 1}, "mathgenerator.computer_science.decimal_to_binary": {"tf": 1}, "mathgenerator.computer_science.decimal_to_hexadeci": {"tf": 1}, "mathgenerator.computer_science.decimal_to_octal": {"tf": 1}, "mathgenerator.geometry.degree_to_rad": {"tf": 1}, "mathgenerator.geometry.radian_to_deg": {"tf": 1}, "mathgenerator.misc.celsius_to_fahrenheit": {"tf": 1}, "mathgenerator.misc.complex_to_polar": {"tf": 1}, "mathgenerator.misc.decimal_to_roman_numerals": {"tf": 1}, "mathgenerator.misc.minutes_to_hours": {"tf": 1}}, "df": 15}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"mathgenerator.calculus.trig_differentiation": {"tf": 1}}, "df": 1, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.geometry.basic_trigonometry": {"tf": 1}}, "df": 1}}}}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.area_of_triangle": {"tf": 1}, "mathgenerator.geometry.third_angle_of_triangle": {"tf": 1}, "mathgenerator.geometry.valid_triangle": {"tf": 1}}, "df": 3}}}}}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {"mathgenerator.geometry.pythagorean_theorem": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.geometry.third_angle_of_triangle": {"tf": 1}}, "df": 1}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"mathgenerator.algebra.complex_quadratic": {"tf": 1}, "mathgenerator.algebra.quadratic_equation": {"tf": 1}}, "df": 2}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator.geometry.fourth_angle_of_quadrilateral": {"tf": 1}}, "df": 1}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.misc.quotient_of_power_same_base": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_power": {"tf": 1}}, "df": 2}}}}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.algebra.distance_two_points": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.misc.binomial_distribution": {"tf": 1}}, "df": 1}}}}}}}}}}, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.basic_math.absolute_difference": {"tf": 1}, "mathgenerator.basic_math.percentage_difference": {"tf": 1}}, "df": 2}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.calculus.power_rule_differentiation": {"tf": 1}, "mathgenerator.calculus.trig_differentiation": {"tf": 1}}, "df": 2}}}}}}}}}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.basic_math.divide_fractions": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.basic_math.division": {"tf": 1}, "mathgenerator.computer_science.modulo_division": {"tf": 1}}, "df": 2}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.basic_math.greatest_common_divisor": {"tf": 1}}, "df": 1}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.statistics.dice_sum_probability": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.algebra.int_matrix_22_determinant": {"tf": 1}}, "df": 1}}}}}}}}}, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator.basic_math.fraction_to_decimal": {"tf": 1}, "mathgenerator.computer_science.bcd_to_decimal": {"tf": 1}, "mathgenerator.computer_science.binary_to_decimal": {"tf": 1}, "mathgenerator.computer_science.decimal_to_bcd": {"tf": 1}, "mathgenerator.computer_science.decimal_to_binary": {"tf": 1}, "mathgenerator.computer_science.decimal_to_hexadeci": {"tf": 1}, "mathgenerator.computer_science.decimal_to_octal": {"tf": 1}, "mathgenerator.misc.decimal_to_roman_numerals": {"tf": 1}}, "df": 8}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.calculus.definite_integral": {"tf": 1}}, "df": 1}}}}}}, "g": {"docs": {"mathgenerator.geometry.radian_to_deg": {"tf": 1}}, "df": 1, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.degree_to_rad": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.algebra.vector_dot": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"mathgenerator.statistics.data_summary": {"tf": 1}}, "df": 1}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1}}, "df": 1, "s": {"docs": {"mathgenerator.algebra.distance_two_points": {"tf": 1}, "mathgenerator.algebra.midpoint_of_two_points": {"tf": 1}, "mathgenerator.calculus.stationary_points": {"tf": 1}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}}, "df": 4}}}}, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.basic_math.power_of_powers": {"tf": 1}, "mathgenerator.calculus.power_rule_differentiation": {"tf": 1}, "mathgenerator.calculus.power_rule_integration": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_base": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_power": {"tf": 1.4142135623730951}}, "df": 5, "s": {"docs": {"mathgenerator.basic_math.power_of_powers": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.geometry.angle_regular_polygon": {"tf": 1}, "mathgenerator.geometry.sum_of_polygon_angles": {"tf": 1}}, "df": 2, "s": {"docs": {"mathgenerator.geometry.perimeter_of_polygons": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.misc.complex_to_polar": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.basic_math.is_prime": {"tf": 1}, "mathgenerator.misc.prime_factors": {"tf": 1}}, "df": 2}}}, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.misc.arithmetic_progression_sum": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_term": {"tf": 1}, "mathgenerator.misc.geometric_progression": {"tf": 1}}, "df": 3}}}}}}}}, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.misc.product_of_scientific_notations": {"tf": 1}}, "df": 1}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.misc.profit_loss_percent": {"tf": 1}}, "df": 1}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.statistics.conditional_probability": {"tf": 1}, "mathgenerator.statistics.dice_sum_probability": {"tf": 1}}, "df": 2}}}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.misc.profit_loss_percent": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.basic_math.percentage": {"tf": 1}, "mathgenerator.basic_math.percentage_difference": {"tf": 1}, "mathgenerator.basic_math.percentage_error": {"tf": 1}}, "df": 3}}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.geometry.perimeter_of_polygons": {"tf": 1}}, "df": 1}}}}}}, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.statistics.permutation": {"tf": 1}}, "df": 1}}}}}}}}}}, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.geometry.pythagorean_theorem": {"tf": 1}}, "df": 1}}}}}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.geometry.surface_area_pyramid": {"tf": 1}, "mathgenerator.geometry.volume_pyramid": {"tf": 1}}, "df": 2}}}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"mathgenerator.algebra.expanding": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.basic_math.exponentiation": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.algebra.quadratic_equation": {"tf": 1}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}}, "df": 2, "s": {"docs": {"mathgenerator.algebra.linear_equations": {"tf": 1}, "mathgenerator.algebra.system_of_equations": {"tf": 1}}, "df": 2}}}}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.basic_math.percentage_error": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.misc.euclidian_norm": {"tf": 1}}, "df": 1}}}}}}}}}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"mathgenerator.algebra.factoring": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator.basic_math.factorial": {"tf": 1}}, "df": 1}}}, "s": {"docs": {"mathgenerator.misc.common_factors": {"tf": 1}, "mathgenerator.misc.factors": {"tf": 1}, "mathgenerator.misc.prime_factors": {"tf": 1}}, "df": 3}}}}}, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.misc.celsius_to_fahrenheit": {"tf": 1}}, "df": 1}}}}}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.basic_math.fraction_multiplication": {"tf": 1}, "mathgenerator.basic_math.fraction_to_decimal": {"tf": 1}}, "df": 2, "s": {"docs": {"mathgenerator.basic_math.compare_fractions": {"tf": 1}, "mathgenerator.basic_math.divide_fractions": {"tf": 1}}, "df": 2}}}}}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {"mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"mathgenerator.geometry.volume_cone_frustum": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {"mathgenerator.computer_science.fibonacci_series": {"tf": 1}, "mathgenerator.computer_science.nth_fibonacci_number": {"tf": 1}}, "df": 2}}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"mathgenerator.geometry.fourth_angle_of_quadrilateral": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.misc.signum_function": {"tf": 1}}, "df": 1}}}}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {"mathgenerator.algebra.int_matrix_22_determinant": {"tf": 1}, "mathgenerator.algebra.invert_matrix": {"tf": 1}, "mathgenerator.algebra.matrix_multiplication": {"tf": 1}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1}}, "df": 4}}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}, "mathgenerator.basic_math.fraction_multiplication": {"tf": 1}, "mathgenerator.basic_math.multiplication": {"tf": 1}}, "df": 3}}}}}}}, "y": {"docs": {"mathgenerator.algebra.multiply_complex_numbers": {"tf": 1}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1}}, "df": 2}}}}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.algebra.midpoint_of_two_points": {"tf": 1}}, "df": 1}}}}}}, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.misc.minutes_to_hours": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {"mathgenerator.computer_science.modulo_division": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.misc.geometric_mean": {"tf": 1}, "mathgenerator.misc.harmonic_mean": {"tf": 1}, "mathgenerator.statistics.mean_median": {"tf": 1}}, "df": 3}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.statistics.mean_median": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "f": {"docs": {"mathgenerator.algebra.intersection_of_two_lines": {"tf": 1}, "mathgenerator.algebra.midpoint_of_two_points": {"tf": 1}, "mathgenerator.algebra.system_of_equations": {"tf": 1}, "mathgenerator.basic_math.power_of_powers": {"tf": 1}, "mathgenerator.geometry.area_of_circle": {"tf": 1}, "mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1}, "mathgenerator.geometry.area_of_triangle": {"tf": 1}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}, "mathgenerator.geometry.fourth_angle_of_quadrilateral": {"tf": 1}, "mathgenerator.geometry.perimeter_of_polygons": {"tf": 1}, "mathgenerator.geometry.sum_of_polygon_angles": {"tf": 1}, "mathgenerator.geometry.third_angle_of_triangle": {"tf": 1}, "mathgenerator.misc.product_of_scientific_notations": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_base": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_power": {"tf": 1}}, "df": 15}, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator.computer_science.decimal_to_octal": {"tf": 1}}, "df": 1}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.misc.set_operation": {"tf": 1}}, "df": 1}}}}}}}}}, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.computer_science.nth_fibonacci_number": {"tf": 1}}, "df": 1, "s": {"docs": {"mathgenerator.algebra.multiply_complex_numbers": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.misc.decimal_to_roman_numerals": {"tf": 1}}, "df": 1}}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"mathgenerator.computer_science.nth_fibonacci_number": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"mathgenerator.misc.euclidian_norm": {"tf": 1}}, "df": 1}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.misc.product_of_scientific_notations": {"tf": 1}}, "df": 1}}}}}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.algebra.simple_interest": {"tf": 1}}, "df": 1}, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.basic_math.simplify_square_root": {"tf": 1}}, "df": 1}}}}}}, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"mathgenerator.misc.signum_function": {"tf": 1}}, "df": 1}}}}}, "y": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {"mathgenerator.algebra.system_of_equations": {"tf": 1}}, "df": 1}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.basic_math.square": {"tf": 1}, "mathgenerator.basic_math.square_root": {"tf": 1}, "mathgenerator.basic_math.simplify_square_root": {"tf": 1}}, "df": 3}}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.basic_math.subtraction": {"tf": 1}}, "df": 1}}}}}}}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.geometry.complementary_and_supplementary_angle": {"tf": 1}}, "df": 1}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.surface_area_cone": {"tf": 1}, "mathgenerator.geometry.surface_area_cube": {"tf": 1}, "mathgenerator.geometry.surface_area_cuboid": {"tf": 1}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.surface_area_pyramid": {"tf": 1}, "mathgenerator.geometry.surface_area_sphere": {"tf": 1}}, "df": 7}}}}, "d": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.misc.surds_comparison": {"tf": 1}}, "df": 1}}}, "m": {"docs": {"mathgenerator.geometry.sum_of_polygon_angles": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_sum": {"tf": 1}, "mathgenerator.statistics.dice_sum_probability": {"tf": 1}}, "df": 3, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.statistics.data_summary": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.calculus.stationary_points": {"tf": 1}}, "df": 1}}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.computer_science.fibonacci_series": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.geometry.sector_area": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {"mathgenerator.misc.set_operation": {"tf": 1}}, "df": 1}}, "p": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.surface_area_sphere": {"tf": 1}, "mathgenerator.geometry.volume_sphere": {"tf": 1}}, "df": 2}}}}}, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"mathgenerator.misc.product_of_scientific_notations": {"tf": 1}}, "df": 1}}}}}}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.misc.quotient_of_power_same_base": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_power": {"tf": 1}}, "df": 2}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.algebra.vector_cross": {"tf": 1}, "mathgenerator.algebra.vector_dot": {"tf": 1}}, "df": 2, "s": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.geometry.valid_triangle": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.volume_cone": {"tf": 1}, "mathgenerator.geometry.volume_cube": {"tf": 1}, "mathgenerator.geometry.volume_cuboid": {"tf": 1}, "mathgenerator.geometry.volume_cylinder": {"tf": 1}, "mathgenerator.geometry.volume_cone_frustum": {"tf": 1}, "mathgenerator.geometry.volume_hemisphere": {"tf": 1}, "mathgenerator.geometry.volume_pyramid": {"tf": 1}, "mathgenerator.geometry.volume_sphere": {"tf": 1}}, "df": 8}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.basic_math.cube_root": {"tf": 1}, "mathgenerator.basic_math.square_root": {"tf": 1}, "mathgenerator.basic_math.simplify_square_root": {"tf": 1}}, "df": 3}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.misc.decimal_to_roman_numerals": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.calculus.power_rule_differentiation": {"tf": 1}, "mathgenerator.calculus.power_rule_integration": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.geometry.angle_regular_polygon": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.geometry.degree_to_rad": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.geometry.radian_to_deg": {"tf": 1}}, "df": 1}}}}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"mathgenerator.computer_science.binary_to_hex": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {"mathgenerator.computer_science.decimal_to_hexadeci": {"tf": 1}}, "df": 1}}}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.volume_hemisphere": {"tf": 1}}, "df": 1}}}}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"mathgenerator.misc.harmonic_mean": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.misc.minutes_to_hours": {"tf": 1}}, "df": 1}}}}}, "y": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.misc.is_leap_year": {"tf": 1}}, "df": 1}}}}}}, "fullname": {"root": {"1": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.computer_science.binary_complement_1s": {"tf": 1}}, "df": 1}}, "2": {"2": {"docs": {"mathgenerator.algebra.int_matrix_22_determinant": {"tf": 1}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0, "s": {"docs": {"mathgenerator.computer_science.binary_2s_complement": {"tf": 1}}, "df": 1}}, "docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"mathgenerator.basic_math": {"tf": 1}, "mathgenerator.basic_math.absolute_difference": {"tf": 1}, "mathgenerator.basic_math.addition": {"tf": 1}, "mathgenerator.basic_math.compare_fractions": {"tf": 1}, "mathgenerator.basic_math.cube_root": {"tf": 1}, "mathgenerator.basic_math.divide_fractions": {"tf": 1}, "mathgenerator.basic_math.division": {"tf": 1}, "mathgenerator.basic_math.exponentiation": {"tf": 1}, "mathgenerator.basic_math.factorial": {"tf": 1}, "mathgenerator.basic_math.fraction_multiplication": {"tf": 1}, "mathgenerator.basic_math.fraction_to_decimal": {"tf": 1}, "mathgenerator.basic_math.greatest_common_divisor": {"tf": 1}, "mathgenerator.basic_math.is_composite": {"tf": 1}, "mathgenerator.basic_math.is_prime": {"tf": 1}, "mathgenerator.basic_math.multiplication": {"tf": 1}, "mathgenerator.basic_math.percentage": {"tf": 1}, "mathgenerator.basic_math.percentage_difference": {"tf": 1}, "mathgenerator.basic_math.percentage_error": {"tf": 1}, "mathgenerator.basic_math.power_of_powers": {"tf": 1}, "mathgenerator.basic_math.square": {"tf": 1}, "mathgenerator.basic_math.square_root": {"tf": 1}, "mathgenerator.basic_math.simplify_square_root": {"tf": 1}, "mathgenerator.basic_math.subtraction": {"tf": 1}}, "df": 23, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator": {"tf": 1}, "mathgenerator.get_gen_list": {"tf": 1}, "mathgenerator.gen_by_id": {"tf": 1}, "mathgenerator.getGenList": {"tf": 1}, "mathgenerator.genById": {"tf": 1}, "mathgenerator.algebra": {"tf": 1}, "mathgenerator.algebra.basic_algebra": {"tf": 1}, "mathgenerator.algebra.combine_like_terms": {"tf": 1}, "mathgenerator.algebra.complex_quadratic": {"tf": 1}, "mathgenerator.algebra.compound_interest": {"tf": 1}, "mathgenerator.algebra.distance_two_points": {"tf": 1}, "mathgenerator.algebra.expanding": {"tf": 1}, "mathgenerator.algebra.factoring": {"tf": 1}, "mathgenerator.algebra.int_matrix_22_determinant": {"tf": 1}, "mathgenerator.algebra.intersection_of_two_lines": {"tf": 1}, "mathgenerator.algebra.invert_matrix": {"tf": 1}, "mathgenerator.algebra.linear_equations": {"tf": 1}, "mathgenerator.algebra.log": {"tf": 1}, "mathgenerator.algebra.matrix_multiplication": {"tf": 1}, "mathgenerator.algebra.midpoint_of_two_points": {"tf": 1}, "mathgenerator.algebra.multiply_complex_numbers": {"tf": 1}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1}, "mathgenerator.algebra.quadratic_equation": {"tf": 1}, "mathgenerator.algebra.simple_interest": {"tf": 1}, "mathgenerator.algebra.system_of_equations": {"tf": 1}, "mathgenerator.algebra.vector_cross": {"tf": 1}, "mathgenerator.algebra.vector_dot": {"tf": 1}, "mathgenerator.basic_math": {"tf": 1}, "mathgenerator.basic_math.absolute_difference": {"tf": 1}, "mathgenerator.basic_math.addition": {"tf": 1}, "mathgenerator.basic_math.compare_fractions": {"tf": 1}, "mathgenerator.basic_math.cube_root": {"tf": 1}, "mathgenerator.basic_math.divide_fractions": {"tf": 1}, "mathgenerator.basic_math.division": {"tf": 1}, "mathgenerator.basic_math.exponentiation": {"tf": 1}, "mathgenerator.basic_math.factorial": {"tf": 1}, "mathgenerator.basic_math.fraction_multiplication": {"tf": 1}, "mathgenerator.basic_math.fraction_to_decimal": {"tf": 1}, "mathgenerator.basic_math.greatest_common_divisor": {"tf": 1}, "mathgenerator.basic_math.is_composite": {"tf": 1}, "mathgenerator.basic_math.is_prime": {"tf": 1}, "mathgenerator.basic_math.multiplication": {"tf": 1}, "mathgenerator.basic_math.percentage": {"tf": 1}, "mathgenerator.basic_math.percentage_difference": {"tf": 1}, "mathgenerator.basic_math.percentage_error": {"tf": 1}, "mathgenerator.basic_math.power_of_powers": {"tf": 1}, "mathgenerator.basic_math.square": {"tf": 1}, "mathgenerator.basic_math.square_root": {"tf": 1}, "mathgenerator.basic_math.simplify_square_root": {"tf": 1}, "mathgenerator.basic_math.subtraction": {"tf": 1}, "mathgenerator.calculus": {"tf": 1}, "mathgenerator.calculus.definite_integral": {"tf": 1}, "mathgenerator.calculus.power_rule_differentiation": {"tf": 1}, "mathgenerator.calculus.power_rule_integration": {"tf": 1}, "mathgenerator.calculus.stationary_points": {"tf": 1}, "mathgenerator.calculus.trig_differentiation": {"tf": 1}, "mathgenerator.computer_science": {"tf": 1}, "mathgenerator.computer_science.bcd_to_decimal": {"tf": 1}, "mathgenerator.computer_science.binary_2s_complement": {"tf": 1}, "mathgenerator.computer_science.binary_complement_1s": {"tf": 1}, "mathgenerator.computer_science.binary_to_decimal": {"tf": 1}, "mathgenerator.computer_science.binary_to_hex": {"tf": 1}, "mathgenerator.computer_science.decimal_to_bcd": {"tf": 1}, "mathgenerator.computer_science.decimal_to_binary": {"tf": 1}, "mathgenerator.computer_science.decimal_to_hexadeci": {"tf": 1}, "mathgenerator.computer_science.decimal_to_octal": {"tf": 1}, "mathgenerator.computer_science.fibonacci_series": {"tf": 1}, "mathgenerator.computer_science.modulo_division": {"tf": 1}, "mathgenerator.computer_science.nth_fibonacci_number": {"tf": 1}, "mathgenerator.geometry": {"tf": 1}, "mathgenerator.geometry.angle_btw_vectors": {"tf": 1}, "mathgenerator.geometry.angle_regular_polygon": {"tf": 1}, "mathgenerator.geometry.arc_length": {"tf": 1}, "mathgenerator.geometry.area_of_circle": {"tf": 1}, "mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1}, "mathgenerator.geometry.area_of_triangle": {"tf": 1}, "mathgenerator.geometry.basic_trigonometry": {"tf": 1}, "mathgenerator.geometry.circumference": {"tf": 1}, "mathgenerator.geometry.complementary_and_supplementary_angle": {"tf": 1}, "mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.degree_to_rad": {"tf": 1}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}, "mathgenerator.geometry.fourth_angle_of_quadrilateral": {"tf": 1}, "mathgenerator.geometry.perimeter_of_polygons": {"tf": 1}, "mathgenerator.geometry.pythagorean_theorem": {"tf": 1}, "mathgenerator.geometry.radian_to_deg": {"tf": 1}, "mathgenerator.geometry.sector_area": {"tf": 1}, "mathgenerator.geometry.sum_of_polygon_angles": {"tf": 1}, "mathgenerator.geometry.surface_area_cone": {"tf": 1}, "mathgenerator.geometry.surface_area_cube": {"tf": 1}, "mathgenerator.geometry.surface_area_cuboid": {"tf": 1}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.surface_area_pyramid": {"tf": 1}, "mathgenerator.geometry.surface_area_sphere": {"tf": 1}, "mathgenerator.geometry.third_angle_of_triangle": {"tf": 1}, "mathgenerator.geometry.valid_triangle": {"tf": 1}, "mathgenerator.geometry.volume_cone": {"tf": 1}, "mathgenerator.geometry.volume_cube": {"tf": 1}, "mathgenerator.geometry.volume_cuboid": {"tf": 1}, "mathgenerator.geometry.volume_cylinder": {"tf": 1}, "mathgenerator.geometry.volume_cone_frustum": {"tf": 1}, "mathgenerator.geometry.volume_hemisphere": {"tf": 1}, "mathgenerator.geometry.volume_pyramid": {"tf": 1}, "mathgenerator.geometry.volume_sphere": {"tf": 1}, "mathgenerator.misc": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_sum": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_term": {"tf": 1}, "mathgenerator.misc.base_conversion": {"tf": 1}, "mathgenerator.misc.binomial_distribution": {"tf": 1}, "mathgenerator.misc.celsius_to_fahrenheit": {"tf": 1}, "mathgenerator.misc.common_factors": {"tf": 1}, "mathgenerator.misc.complex_to_polar": {"tf": 1}, "mathgenerator.misc.decimal_to_roman_numerals": {"tf": 1}, "mathgenerator.misc.euclidian_norm": {"tf": 1}, "mathgenerator.misc.factors": {"tf": 1}, "mathgenerator.misc.geometric_mean": {"tf": 1}, "mathgenerator.misc.geometric_progression": {"tf": 1}, "mathgenerator.misc.harmonic_mean": {"tf": 1}, "mathgenerator.misc.is_leap_year": {"tf": 1}, "mathgenerator.misc.lcm": {"tf": 1}, "mathgenerator.misc.minutes_to_hours": {"tf": 1}, "mathgenerator.misc.prime_factors": {"tf": 1}, "mathgenerator.misc.product_of_scientific_notations": {"tf": 1}, "mathgenerator.misc.profit_loss_percent": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_base": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_power": {"tf": 1}, "mathgenerator.misc.set_operation": {"tf": 1}, "mathgenerator.misc.signum_function": {"tf": 1}, "mathgenerator.misc.surds_comparison": {"tf": 1}, "mathgenerator.statistics": {"tf": 1}, "mathgenerator.statistics.combinations": {"tf": 1}, "mathgenerator.statistics.conditional_probability": {"tf": 1}, "mathgenerator.statistics.confidence_interval": {"tf": 1}, "mathgenerator.statistics.data_summary": {"tf": 1}, "mathgenerator.statistics.dice_sum_probability": {"tf": 1}, "mathgenerator.statistics.mean_median": {"tf": 1}, "mathgenerator.statistics.permutation": {"tf": 1}}, "df": 137}}}}}}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {"mathgenerator.algebra.int_matrix_22_determinant": {"tf": 1}, "mathgenerator.algebra.invert_matrix": {"tf": 1}, "mathgenerator.algebra.matrix_multiplication": {"tf": 1}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1}}, "df": 4}}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}, "mathgenerator.basic_math.fraction_multiplication": {"tf": 1}, "mathgenerator.basic_math.multiplication": {"tf": 1}}, "df": 3}}}}}}}, "y": {"docs": {"mathgenerator.algebra.multiply_complex_numbers": {"tf": 1}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1}}, "df": 2}}}}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.algebra.midpoint_of_two_points": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "c": {"docs": {"mathgenerator.misc": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_sum": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_term": {"tf": 1}, "mathgenerator.misc.base_conversion": {"tf": 1}, "mathgenerator.misc.binomial_distribution": {"tf": 1}, "mathgenerator.misc.celsius_to_fahrenheit": {"tf": 1}, "mathgenerator.misc.common_factors": {"tf": 1}, "mathgenerator.misc.complex_to_polar": {"tf": 1}, "mathgenerator.misc.decimal_to_roman_numerals": {"tf": 1}, "mathgenerator.misc.euclidian_norm": {"tf": 1}, "mathgenerator.misc.factors": {"tf": 1}, "mathgenerator.misc.geometric_mean": {"tf": 1}, "mathgenerator.misc.geometric_progression": {"tf": 1}, "mathgenerator.misc.harmonic_mean": {"tf": 1}, "mathgenerator.misc.is_leap_year": {"tf": 1}, "mathgenerator.misc.lcm": {"tf": 1}, "mathgenerator.misc.minutes_to_hours": {"tf": 1}, "mathgenerator.misc.prime_factors": {"tf": 1}, "mathgenerator.misc.product_of_scientific_notations": {"tf": 1}, "mathgenerator.misc.profit_loss_percent": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_base": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_power": {"tf": 1}, "mathgenerator.misc.set_operation": {"tf": 1}, "mathgenerator.misc.signum_function": {"tf": 1}, "mathgenerator.misc.surds_comparison": {"tf": 1}}, "df": 25}}, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.misc.minutes_to_hours": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {"mathgenerator.computer_science.modulo_division": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.misc.geometric_mean": {"tf": 1}, "mathgenerator.misc.harmonic_mean": {"tf": 1}, "mathgenerator.statistics.mean_median": {"tf": 1}}, "df": 3}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.statistics.mean_median": {"tf": 1}}, "df": 1}}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.get_gen_list": {"tf": 1}}, "df": 1, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.getGenList": {"tf": 1}}, "df": 1}}}}}}}}, "n": {"docs": {"mathgenerator.get_gen_list": {"tf": 1}, "mathgenerator.gen_by_id": {"tf": 1}}, "df": 2, "b": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.genById": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.geometry": {"tf": 1}, "mathgenerator.geometry.angle_btw_vectors": {"tf": 1}, "mathgenerator.geometry.angle_regular_polygon": {"tf": 1}, "mathgenerator.geometry.arc_length": {"tf": 1}, "mathgenerator.geometry.area_of_circle": {"tf": 1}, "mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1}, "mathgenerator.geometry.area_of_triangle": {"tf": 1}, "mathgenerator.geometry.basic_trigonometry": {"tf": 1}, "mathgenerator.geometry.circumference": {"tf": 1}, "mathgenerator.geometry.complementary_and_supplementary_angle": {"tf": 1}, "mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.degree_to_rad": {"tf": 1}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}, "mathgenerator.geometry.fourth_angle_of_quadrilateral": {"tf": 1}, "mathgenerator.geometry.perimeter_of_polygons": {"tf": 1}, "mathgenerator.geometry.pythagorean_theorem": {"tf": 1}, "mathgenerator.geometry.radian_to_deg": {"tf": 1}, "mathgenerator.geometry.sector_area": {"tf": 1}, "mathgenerator.geometry.sum_of_polygon_angles": {"tf": 1}, "mathgenerator.geometry.surface_area_cone": {"tf": 1}, "mathgenerator.geometry.surface_area_cube": {"tf": 1}, "mathgenerator.geometry.surface_area_cuboid": {"tf": 1}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.surface_area_pyramid": {"tf": 1}, "mathgenerator.geometry.surface_area_sphere": {"tf": 1}, "mathgenerator.geometry.third_angle_of_triangle": {"tf": 1}, "mathgenerator.geometry.valid_triangle": {"tf": 1}, "mathgenerator.geometry.volume_cone": {"tf": 1}, "mathgenerator.geometry.volume_cube": {"tf": 1}, "mathgenerator.geometry.volume_cuboid": {"tf": 1}, "mathgenerator.geometry.volume_cylinder": {"tf": 1}, "mathgenerator.geometry.volume_cone_frustum": {"tf": 1}, "mathgenerator.geometry.volume_hemisphere": {"tf": 1}, "mathgenerator.geometry.volume_pyramid": {"tf": 1}, "mathgenerator.geometry.volume_sphere": {"tf": 1}}, "df": 35}, "i": {"docs": {}, "df": 0, "c": {"docs": {"mathgenerator.misc.geometric_mean": {"tf": 1}, "mathgenerator.misc.geometric_progression": {"tf": 1}}, "df": 2}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.basic_math.greatest_common_divisor": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.get_gen_list": {"tf": 1}}, "df": 1}}, "k": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.algebra.combine_like_terms": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}}, "df": 1, "s": {"docs": {"mathgenerator.algebra.intersection_of_two_lines": {"tf": 1}}, "df": 1}, "a": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.algebra.linear_equations": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "g": {"docs": {"mathgenerator.algebra.log": {"tf": 1}}, "df": 1}, "s": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.misc.profit_loss_percent": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"mathgenerator.geometry.arc_length": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {"mathgenerator.misc.is_leap_year": {"tf": 1}}, "df": 1}}}, "c": {"docs": {}, "df": 0, "m": {"docs": {"mathgenerator.misc.lcm": {"tf": 1}}, "df": 1}}}, "b": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.gen_by_id": {"tf": 1}}, "df": 1}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"mathgenerator.algebra.basic_algebra": {"tf": 1}, "mathgenerator.basic_math": {"tf": 1}, "mathgenerator.basic_math.absolute_difference": {"tf": 1}, "mathgenerator.basic_math.addition": {"tf": 1}, "mathgenerator.basic_math.compare_fractions": {"tf": 1}, "mathgenerator.basic_math.cube_root": {"tf": 1}, "mathgenerator.basic_math.divide_fractions": {"tf": 1}, "mathgenerator.basic_math.division": {"tf": 1}, "mathgenerator.basic_math.exponentiation": {"tf": 1}, "mathgenerator.basic_math.factorial": {"tf": 1}, "mathgenerator.basic_math.fraction_multiplication": {"tf": 1}, "mathgenerator.basic_math.fraction_to_decimal": {"tf": 1}, "mathgenerator.basic_math.greatest_common_divisor": {"tf": 1}, "mathgenerator.basic_math.is_composite": {"tf": 1}, "mathgenerator.basic_math.is_prime": {"tf": 1}, "mathgenerator.basic_math.multiplication": {"tf": 1}, "mathgenerator.basic_math.percentage": {"tf": 1}, "mathgenerator.basic_math.percentage_difference": {"tf": 1}, "mathgenerator.basic_math.percentage_error": {"tf": 1}, "mathgenerator.basic_math.power_of_powers": {"tf": 1}, "mathgenerator.basic_math.square": {"tf": 1}, "mathgenerator.basic_math.square_root": {"tf": 1}, "mathgenerator.basic_math.simplify_square_root": {"tf": 1}, "mathgenerator.basic_math.subtraction": {"tf": 1}, "mathgenerator.geometry.basic_trigonometry": {"tf": 1}}, "df": 25}}, "e": {"docs": {"mathgenerator.misc.base_conversion": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_base": {"tf": 1}}, "df": 2}}}, "c": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.computer_science.bcd_to_decimal": {"tf": 1}, "mathgenerator.computer_science.decimal_to_bcd": {"tf": 1}}, "df": 2}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.computer_science.binary_2s_complement": {"tf": 1}, "mathgenerator.computer_science.binary_complement_1s": {"tf": 1}, "mathgenerator.computer_science.binary_to_decimal": {"tf": 1}, "mathgenerator.computer_science.binary_to_hex": {"tf": 1}, "mathgenerator.computer_science.decimal_to_binary": {"tf": 1}}, "df": 5}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator.misc.binomial_distribution": {"tf": 1}}, "df": 1}}}}}}}, "t": {"docs": {}, "df": 0, "w": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.gen_by_id": {"tf": 1}}, "df": 1}, "n": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.algebra.int_matrix_22_determinant": {"tf": 1}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.algebra.compound_interest": {"tf": 1}, "mathgenerator.algebra.simple_interest": {"tf": 1}}, "df": 2}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.algebra.intersection_of_two_lines": {"tf": 1}}, "df": 1}}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator.statistics.confidence_interval": {"tf": 1}}, "df": 1}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator.calculus.definite_integral": {"tf": 1}}, "df": 1}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.calculus.power_rule_integration": {"tf": 1}}, "df": 1}}}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.algebra.invert_matrix": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {"mathgenerator.basic_math.is_composite": {"tf": 1}, "mathgenerator.basic_math.is_prime": {"tf": 1}, "mathgenerator.misc.is_leap_year": {"tf": 1}}, "df": 3}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {"mathgenerator.algebra": {"tf": 1}, "mathgenerator.algebra.basic_algebra": {"tf": 1.4142135623730951}, "mathgenerator.algebra.combine_like_terms": {"tf": 1}, "mathgenerator.algebra.complex_quadratic": {"tf": 1}, "mathgenerator.algebra.compound_interest": {"tf": 1}, "mathgenerator.algebra.distance_two_points": {"tf": 1}, "mathgenerator.algebra.expanding": {"tf": 1}, "mathgenerator.algebra.factoring": {"tf": 1}, "mathgenerator.algebra.int_matrix_22_determinant": {"tf": 1}, "mathgenerator.algebra.intersection_of_two_lines": {"tf": 1}, "mathgenerator.algebra.invert_matrix": {"tf": 1}, "mathgenerator.algebra.linear_equations": {"tf": 1}, "mathgenerator.algebra.log": {"tf": 1}, "mathgenerator.algebra.matrix_multiplication": {"tf": 1}, "mathgenerator.algebra.midpoint_of_two_points": {"tf": 1}, "mathgenerator.algebra.multiply_complex_numbers": {"tf": 1}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1}, "mathgenerator.algebra.quadratic_equation": {"tf": 1}, "mathgenerator.algebra.simple_interest": {"tf": 1}, "mathgenerator.algebra.system_of_equations": {"tf": 1}, "mathgenerator.algebra.vector_cross": {"tf": 1}, "mathgenerator.algebra.vector_dot": {"tf": 1}}, "df": 22}}}}}}, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.basic_math.absolute_difference": {"tf": 1}}, "df": 1}}}}}}}, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.basic_math.addition": {"tf": 1}}, "df": 1}}}}}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}, "mathgenerator.geometry.angle_regular_polygon": {"tf": 1}, "mathgenerator.geometry.complementary_and_supplementary_angle": {"tf": 1}, "mathgenerator.geometry.fourth_angle_of_quadrilateral": {"tf": 1}, "mathgenerator.geometry.third_angle_of_triangle": {"tf": 1}}, "df": 5, "s": {"docs": {"mathgenerator.geometry.sum_of_polygon_angles": {"tf": 1}}, "df": 1}}}}, "d": {"docs": {"mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1}, "mathgenerator.geometry.complementary_and_supplementary_angle": {"tf": 1}}, "df": 2}}, "r": {"docs": {}, "df": 0, "c": {"docs": {"mathgenerator.geometry.arc_length": {"tf": 1}}, "df": 1}, "e": {"docs": {}, "df": 0, "a": {"docs": {"mathgenerator.geometry.area_of_circle": {"tf": 1}, "mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1}, "mathgenerator.geometry.area_of_triangle": {"tf": 1}, "mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.sector_area": {"tf": 1}, "mathgenerator.geometry.surface_area_cone": {"tf": 1}, "mathgenerator.geometry.surface_area_cube": {"tf": 1}, "mathgenerator.geometry.surface_area_cuboid": {"tf": 1}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.surface_area_pyramid": {"tf": 1}, "mathgenerator.geometry.surface_area_sphere": {"tf": 1}}, "df": 11}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"mathgenerator.misc.arithmetic_progression_sum": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_term": {"tf": 1}}, "df": 2}}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.algebra.combine_like_terms": {"tf": 1}}, "df": 1}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.statistics.combinations": {"tf": 1}}, "df": 1}}}}}}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"mathgenerator.algebra.complex_quadratic": {"tf": 1}, "mathgenerator.algebra.multiply_complex_numbers": {"tf": 1}, "mathgenerator.misc.complex_to_polar": {"tf": 1}}, "df": 3}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.computer_science.binary_2s_complement": {"tf": 1}, "mathgenerator.computer_science.binary_complement_1s": {"tf": 1}}, "df": 2, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.geometry.complementary_and_supplementary_angle": {"tf": 1}}, "df": 1}}}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.algebra.compound_interest": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.basic_math.is_composite": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.basic_math.compare_fractions": {"tf": 1}}, "df": 1}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.misc.surds_comparison": {"tf": 1}}, "df": 1}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.computer_science": {"tf": 1}, "mathgenerator.computer_science.bcd_to_decimal": {"tf": 1}, "mathgenerator.computer_science.binary_2s_complement": {"tf": 1}, "mathgenerator.computer_science.binary_complement_1s": {"tf": 1}, "mathgenerator.computer_science.binary_to_decimal": {"tf": 1}, "mathgenerator.computer_science.binary_to_hex": {"tf": 1}, "mathgenerator.computer_science.decimal_to_bcd": {"tf": 1}, "mathgenerator.computer_science.decimal_to_binary": {"tf": 1}, "mathgenerator.computer_science.decimal_to_hexadeci": {"tf": 1}, "mathgenerator.computer_science.decimal_to_octal": {"tf": 1}, "mathgenerator.computer_science.fibonacci_series": {"tf": 1}, "mathgenerator.computer_science.modulo_division": {"tf": 1}, "mathgenerator.computer_science.nth_fibonacci_number": {"tf": 1}}, "df": 13}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.basic_math.greatest_common_divisor": {"tf": 1}, "mathgenerator.misc.common_factors": {"tf": 1}}, "df": 2}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.surface_area_cone": {"tf": 1}, "mathgenerator.geometry.volume_cone": {"tf": 1}, "mathgenerator.geometry.volume_cone_frustum": {"tf": 1}}, "df": 3}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.misc.base_conversion": {"tf": 1}}, "df": 1}}}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator.statistics.conditional_probability": {"tf": 1}}, "df": 1}}}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.statistics.confidence_interval": {"tf": 1}}, "df": 1}}}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.algebra.vector_cross": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.basic_math.cube_root": {"tf": 1}, "mathgenerator.geometry.surface_area_cube": {"tf": 1}, "mathgenerator.geometry.volume_cube": {"tf": 1}}, "df": 3}, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.geometry.surface_area_cuboid": {"tf": 1}, "mathgenerator.geometry.volume_cuboid": {"tf": 1}}, "df": 2}}}}, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.calculus": {"tf": 1}, "mathgenerator.calculus.definite_integral": {"tf": 1}, "mathgenerator.calculus.power_rule_differentiation": {"tf": 1}, "mathgenerator.calculus.power_rule_integration": {"tf": 1}, "mathgenerator.calculus.stationary_points": {"tf": 1}, "mathgenerator.calculus.trig_differentiation": {"tf": 1}}, "df": 6}}}}}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.area_of_circle": {"tf": 1}, "mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1}}, "df": 2}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.circumference": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.misc.celsius_to_fahrenheit": {"tf": 1}}, "df": 1}}}}}}, "y": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.volume_cylinder": {"tf": 1}}, "df": 3}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"mathgenerator.misc.arithmetic_progression_term": {"tf": 1}}, "df": 1, "s": {"docs": {"mathgenerator.algebra.combine_like_terms": {"tf": 1}}, "df": 1}}}}, "w": {"docs": {}, "df": 0, "o": {"docs": {"mathgenerator.algebra.distance_two_points": {"tf": 1}, "mathgenerator.algebra.intersection_of_two_lines": {"tf": 1}, "mathgenerator.algebra.midpoint_of_two_points": {"tf": 1}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}}, "df": 4}}, "o": {"docs": {"mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1}, "mathgenerator.basic_math.fraction_to_decimal": {"tf": 1}, "mathgenerator.computer_science.bcd_to_decimal": {"tf": 1}, "mathgenerator.computer_science.binary_to_decimal": {"tf": 1}, "mathgenerator.computer_science.binary_to_hex": {"tf": 1}, "mathgenerator.computer_science.decimal_to_bcd": {"tf": 1}, "mathgenerator.computer_science.decimal_to_binary": {"tf": 1}, "mathgenerator.computer_science.decimal_to_hexadeci": {"tf": 1}, "mathgenerator.computer_science.decimal_to_octal": {"tf": 1}, "mathgenerator.geometry.degree_to_rad": {"tf": 1}, "mathgenerator.geometry.radian_to_deg": {"tf": 1}, "mathgenerator.misc.celsius_to_fahrenheit": {"tf": 1}, "mathgenerator.misc.complex_to_polar": {"tf": 1}, "mathgenerator.misc.decimal_to_roman_numerals": {"tf": 1}, "mathgenerator.misc.minutes_to_hours": {"tf": 1}}, "df": 15}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"mathgenerator.calculus.trig_differentiation": {"tf": 1}}, "df": 1, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.geometry.basic_trigonometry": {"tf": 1}}, "df": 1}}}}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.area_of_triangle": {"tf": 1}, "mathgenerator.geometry.third_angle_of_triangle": {"tf": 1}, "mathgenerator.geometry.valid_triangle": {"tf": 1}}, "df": 3}}}}}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {"mathgenerator.geometry.pythagorean_theorem": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.geometry.third_angle_of_triangle": {"tf": 1}}, "df": 1}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"mathgenerator.algebra.complex_quadratic": {"tf": 1}, "mathgenerator.algebra.quadratic_equation": {"tf": 1}}, "df": 2}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator.geometry.fourth_angle_of_quadrilateral": {"tf": 1}}, "df": 1}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.misc.quotient_of_power_same_base": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_power": {"tf": 1}}, "df": 2}}}}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.algebra.distance_two_points": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.misc.binomial_distribution": {"tf": 1}}, "df": 1}}}}}}}}}}, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.basic_math.absolute_difference": {"tf": 1}, "mathgenerator.basic_math.percentage_difference": {"tf": 1}}, "df": 2}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.calculus.power_rule_differentiation": {"tf": 1}, "mathgenerator.calculus.trig_differentiation": {"tf": 1}}, "df": 2}}}}}}}}}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.basic_math.divide_fractions": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.basic_math.division": {"tf": 1}, "mathgenerator.computer_science.modulo_division": {"tf": 1}}, "df": 2}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.basic_math.greatest_common_divisor": {"tf": 1}}, "df": 1}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.statistics.dice_sum_probability": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.algebra.int_matrix_22_determinant": {"tf": 1}}, "df": 1}}}}}}}}}, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator.basic_math.fraction_to_decimal": {"tf": 1}, "mathgenerator.computer_science.bcd_to_decimal": {"tf": 1}, "mathgenerator.computer_science.binary_to_decimal": {"tf": 1}, "mathgenerator.computer_science.decimal_to_bcd": {"tf": 1}, "mathgenerator.computer_science.decimal_to_binary": {"tf": 1}, "mathgenerator.computer_science.decimal_to_hexadeci": {"tf": 1}, "mathgenerator.computer_science.decimal_to_octal": {"tf": 1}, "mathgenerator.misc.decimal_to_roman_numerals": {"tf": 1}}, "df": 8}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.calculus.definite_integral": {"tf": 1}}, "df": 1}}}}}}, "g": {"docs": {"mathgenerator.geometry.radian_to_deg": {"tf": 1}}, "df": 1, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.degree_to_rad": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.algebra.vector_dot": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"mathgenerator.statistics.data_summary": {"tf": 1}}, "df": 1}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1}}, "df": 1, "s": {"docs": {"mathgenerator.algebra.distance_two_points": {"tf": 1}, "mathgenerator.algebra.midpoint_of_two_points": {"tf": 1}, "mathgenerator.calculus.stationary_points": {"tf": 1}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}}, "df": 4}}}}, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.basic_math.power_of_powers": {"tf": 1}, "mathgenerator.calculus.power_rule_differentiation": {"tf": 1}, "mathgenerator.calculus.power_rule_integration": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_base": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_power": {"tf": 1.4142135623730951}}, "df": 5, "s": {"docs": {"mathgenerator.basic_math.power_of_powers": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.geometry.angle_regular_polygon": {"tf": 1}, "mathgenerator.geometry.sum_of_polygon_angles": {"tf": 1}}, "df": 2, "s": {"docs": {"mathgenerator.geometry.perimeter_of_polygons": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.misc.complex_to_polar": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.basic_math.is_prime": {"tf": 1}, "mathgenerator.misc.prime_factors": {"tf": 1}}, "df": 2}}}, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.misc.arithmetic_progression_sum": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_term": {"tf": 1}, "mathgenerator.misc.geometric_progression": {"tf": 1}}, "df": 3}}}}}}}}, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.misc.product_of_scientific_notations": {"tf": 1}}, "df": 1}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.misc.profit_loss_percent": {"tf": 1}}, "df": 1}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.statistics.conditional_probability": {"tf": 1}, "mathgenerator.statistics.dice_sum_probability": {"tf": 1}}, "df": 2}}}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.misc.profit_loss_percent": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.basic_math.percentage": {"tf": 1}, "mathgenerator.basic_math.percentage_difference": {"tf": 1}, "mathgenerator.basic_math.percentage_error": {"tf": 1}}, "df": 3}}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.geometry.perimeter_of_polygons": {"tf": 1}}, "df": 1}}}}}}, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.statistics.permutation": {"tf": 1}}, "df": 1}}}}}}}}}}, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.geometry.pythagorean_theorem": {"tf": 1}}, "df": 1}}}}}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.geometry.surface_area_pyramid": {"tf": 1}, "mathgenerator.geometry.volume_pyramid": {"tf": 1}}, "df": 2}}}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"mathgenerator.algebra.expanding": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.basic_math.exponentiation": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.algebra.quadratic_equation": {"tf": 1}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}}, "df": 2, "s": {"docs": {"mathgenerator.algebra.linear_equations": {"tf": 1}, "mathgenerator.algebra.system_of_equations": {"tf": 1}}, "df": 2}}}}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.basic_math.percentage_error": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.misc.euclidian_norm": {"tf": 1}}, "df": 1}}}}}}}}}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"mathgenerator.algebra.factoring": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator.basic_math.factorial": {"tf": 1}}, "df": 1}}}, "s": {"docs": {"mathgenerator.misc.common_factors": {"tf": 1}, "mathgenerator.misc.factors": {"tf": 1}, "mathgenerator.misc.prime_factors": {"tf": 1}}, "df": 3}}}}}, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.misc.celsius_to_fahrenheit": {"tf": 1}}, "df": 1}}}}}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.basic_math.fraction_multiplication": {"tf": 1}, "mathgenerator.basic_math.fraction_to_decimal": {"tf": 1}}, "df": 2, "s": {"docs": {"mathgenerator.basic_math.compare_fractions": {"tf": 1}, "mathgenerator.basic_math.divide_fractions": {"tf": 1}}, "df": 2}}}}}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {"mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"mathgenerator.geometry.volume_cone_frustum": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {"mathgenerator.computer_science.fibonacci_series": {"tf": 1}, "mathgenerator.computer_science.nth_fibonacci_number": {"tf": 1}}, "df": 2}}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"mathgenerator.geometry.fourth_angle_of_quadrilateral": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.misc.signum_function": {"tf": 1}}, "df": 1}}}}}}}}, "o": {"docs": {}, "df": 0, "f": {"docs": {"mathgenerator.algebra.intersection_of_two_lines": {"tf": 1}, "mathgenerator.algebra.midpoint_of_two_points": {"tf": 1}, "mathgenerator.algebra.system_of_equations": {"tf": 1}, "mathgenerator.basic_math.power_of_powers": {"tf": 1}, "mathgenerator.geometry.area_of_circle": {"tf": 1}, "mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1}, "mathgenerator.geometry.area_of_triangle": {"tf": 1}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}, "mathgenerator.geometry.fourth_angle_of_quadrilateral": {"tf": 1}, "mathgenerator.geometry.perimeter_of_polygons": {"tf": 1}, "mathgenerator.geometry.sum_of_polygon_angles": {"tf": 1}, "mathgenerator.geometry.third_angle_of_triangle": {"tf": 1}, "mathgenerator.misc.product_of_scientific_notations": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_base": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_power": {"tf": 1}}, "df": 15}, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator.computer_science.decimal_to_octal": {"tf": 1}}, "df": 1}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.misc.set_operation": {"tf": 1}}, "df": 1}}}}}}}}}, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.computer_science.nth_fibonacci_number": {"tf": 1}}, "df": 1, "s": {"docs": {"mathgenerator.algebra.multiply_complex_numbers": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.misc.decimal_to_roman_numerals": {"tf": 1}}, "df": 1}}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"mathgenerator.computer_science.nth_fibonacci_number": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"mathgenerator.misc.euclidian_norm": {"tf": 1}}, "df": 1}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.misc.product_of_scientific_notations": {"tf": 1}}, "df": 1}}}}}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.algebra.simple_interest": {"tf": 1}}, "df": 1}, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.basic_math.simplify_square_root": {"tf": 1}}, "df": 1}}}}}}, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"mathgenerator.misc.signum_function": {"tf": 1}}, "df": 1}}}}}, "y": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {"mathgenerator.algebra.system_of_equations": {"tf": 1}}, "df": 1}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.basic_math.square": {"tf": 1}, "mathgenerator.basic_math.square_root": {"tf": 1}, "mathgenerator.basic_math.simplify_square_root": {"tf": 1}}, "df": 3}}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.basic_math.subtraction": {"tf": 1}}, "df": 1}}}}}}}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.geometry.complementary_and_supplementary_angle": {"tf": 1}}, "df": 1}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.surface_area_cone": {"tf": 1}, "mathgenerator.geometry.surface_area_cube": {"tf": 1}, "mathgenerator.geometry.surface_area_cuboid": {"tf": 1}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.surface_area_pyramid": {"tf": 1}, "mathgenerator.geometry.surface_area_sphere": {"tf": 1}}, "df": 7}}}}, "d": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.misc.surds_comparison": {"tf": 1}}, "df": 1}}}, "m": {"docs": {"mathgenerator.geometry.sum_of_polygon_angles": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_sum": {"tf": 1}, "mathgenerator.statistics.dice_sum_probability": {"tf": 1}}, "df": 3, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.statistics.data_summary": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.calculus.stationary_points": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.statistics": {"tf": 1}, "mathgenerator.statistics.combinations": {"tf": 1}, "mathgenerator.statistics.conditional_probability": {"tf": 1}, "mathgenerator.statistics.confidence_interval": {"tf": 1}, "mathgenerator.statistics.data_summary": {"tf": 1}, "mathgenerator.statistics.dice_sum_probability": {"tf": 1}, "mathgenerator.statistics.mean_median": {"tf": 1}, "mathgenerator.statistics.permutation": {"tf": 1}}, "df": 8}}}}}}}}}, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.computer_science": {"tf": 1}, "mathgenerator.computer_science.bcd_to_decimal": {"tf": 1}, "mathgenerator.computer_science.binary_2s_complement": {"tf": 1}, "mathgenerator.computer_science.binary_complement_1s": {"tf": 1}, "mathgenerator.computer_science.binary_to_decimal": {"tf": 1}, "mathgenerator.computer_science.binary_to_hex": {"tf": 1}, "mathgenerator.computer_science.decimal_to_bcd": {"tf": 1}, "mathgenerator.computer_science.decimal_to_binary": {"tf": 1}, "mathgenerator.computer_science.decimal_to_hexadeci": {"tf": 1}, "mathgenerator.computer_science.decimal_to_octal": {"tf": 1}, "mathgenerator.computer_science.fibonacci_series": {"tf": 1}, "mathgenerator.computer_science.modulo_division": {"tf": 1}, "mathgenerator.computer_science.nth_fibonacci_number": {"tf": 1}}, "df": 13}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"mathgenerator.misc.product_of_scientific_notations": {"tf": 1}}, "df": 1}}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.computer_science.fibonacci_series": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.geometry.sector_area": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {"mathgenerator.misc.set_operation": {"tf": 1}}, "df": 1}}, "p": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.surface_area_sphere": {"tf": 1}, "mathgenerator.geometry.volume_sphere": {"tf": 1}}, "df": 2}}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.misc.quotient_of_power_same_base": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_power": {"tf": 1}}, "df": 2}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.algebra.vector_cross": {"tf": 1}, "mathgenerator.algebra.vector_dot": {"tf": 1}}, "df": 2, "s": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.geometry.valid_triangle": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.volume_cone": {"tf": 1}, "mathgenerator.geometry.volume_cube": {"tf": 1}, "mathgenerator.geometry.volume_cuboid": {"tf": 1}, "mathgenerator.geometry.volume_cylinder": {"tf": 1}, "mathgenerator.geometry.volume_cone_frustum": {"tf": 1}, "mathgenerator.geometry.volume_hemisphere": {"tf": 1}, "mathgenerator.geometry.volume_pyramid": {"tf": 1}, "mathgenerator.geometry.volume_sphere": {"tf": 1}}, "df": 8}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.basic_math.cube_root": {"tf": 1}, "mathgenerator.basic_math.square_root": {"tf": 1}, "mathgenerator.basic_math.simplify_square_root": {"tf": 1}}, "df": 3}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.misc.decimal_to_roman_numerals": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.calculus.power_rule_differentiation": {"tf": 1}, "mathgenerator.calculus.power_rule_integration": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.geometry.angle_regular_polygon": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.geometry.degree_to_rad": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.geometry.radian_to_deg": {"tf": 1}}, "df": 1}}}}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"mathgenerator.computer_science.binary_to_hex": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {"mathgenerator.computer_science.decimal_to_hexadeci": {"tf": 1}}, "df": 1}}}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.volume_hemisphere": {"tf": 1}}, "df": 1}}}}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"mathgenerator.misc.harmonic_mean": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.misc.minutes_to_hours": {"tf": 1}}, "df": 1}}}}}, "y": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.misc.is_leap_year": {"tf": 1}}, "df": 1}}}}}}, "annotation": {"root": {"docs": {}, "df": 0}}, "default_value": {"root": {"docs": {}, "df": 0}}, "signature": {"root": {"0": {"docs": {"mathgenerator.algebra.complex_quadratic": {"tf": 1}, "mathgenerator.basic_math.percentage_difference": {"tf": 1}, "mathgenerator.geometry.basic_trigonometry": {"tf": 1}}, "df": 3}, "1": {"0": {"0": {"0": {"0": {"docs": {"mathgenerator.algebra.compound_interest": {"tf": 1}, "mathgenerator.algebra.simple_interest": {"tf": 1}, "mathgenerator.computer_science.bcd_to_decimal": {"tf": 1}, "mathgenerator.computer_science.decimal_to_bcd": {"tf": 1}}, "df": 4}, "docs": {"mathgenerator.basic_math.cube_root": {"tf": 1}, "mathgenerator.basic_math.greatest_common_divisor": {"tf": 1}, "mathgenerator.computer_science.decimal_to_hexadeci": {"tf": 1}, "mathgenerator.misc.factors": {"tf": 1}, "mathgenerator.misc.profit_loss_percent": {"tf": 1.4142135623730951}}, "df": 5}, "docs": {"mathgenerator.algebra.int_matrix_22_determinant": {"tf": 1}, "mathgenerator.algebra.matrix_multiplication": {"tf": 1}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1}, "mathgenerator.algebra.quadratic_equation": {"tf": 1}, "mathgenerator.basic_math.absolute_difference": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.is_prime": {"tf": 1}, "mathgenerator.basic_math.percentage_error": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.simplify_square_root": {"tf": 1}, "mathgenerator.calculus.definite_integral": {"tf": 1}, "mathgenerator.computer_science.nth_fibonacci_number": {"tf": 1}, "mathgenerator.geometry.area_of_circle": {"tf": 1}, "mathgenerator.geometry.circumference": {"tf": 1}, "mathgenerator.geometry.volume_hemisphere": {"tf": 1}, "mathgenerator.geometry.volume_sphere": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_sum": {"tf": 1.7320508075688772}, "mathgenerator.misc.arithmetic_progression_term": {"tf": 1.7320508075688772}, "mathgenerator.misc.celsius_to_fahrenheit": {"tf": 1}, "mathgenerator.misc.common_factors": {"tf": 1}, "mathgenerator.misc.geometric_mean": {"tf": 1}, "mathgenerator.misc.harmonic_mean": {"tf": 1}, "mathgenerator.misc.product_of_scientific_notations": {"tf": 1.4142135623730951}, "mathgenerator.misc.surds_comparison": {"tf": 1}}, "df": 22}, "docs": {"mathgenerator.algebra.basic_algebra": {"tf": 1}, "mathgenerator.algebra.combine_like_terms": {"tf": 1.4142135623730951}, "mathgenerator.algebra.complex_quadratic": {"tf": 1}, "mathgenerator.algebra.compound_interest": {"tf": 1.4142135623730951}, "mathgenerator.algebra.expanding": {"tf": 2}, "mathgenerator.algebra.factoring": {"tf": 1.4142135623730951}, "mathgenerator.algebra.intersection_of_two_lines": {"tf": 2}, "mathgenerator.algebra.matrix_multiplication": {"tf": 1}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1}, "mathgenerator.algebra.simple_interest": {"tf": 1.4142135623730951}, "mathgenerator.algebra.system_of_equations": {"tf": 1.7320508075688772}, "mathgenerator.basic_math.compare_fractions": {"tf": 1}, "mathgenerator.basic_math.divide_fractions": {"tf": 1}, "mathgenerator.basic_math.exponentiation": {"tf": 1}, "mathgenerator.basic_math.fraction_multiplication": {"tf": 1}, "mathgenerator.basic_math.power_of_powers": {"tf": 1}, "mathgenerator.calculus.power_rule_differentiation": {"tf": 1.4142135623730951}, "mathgenerator.calculus.power_rule_integration": {"tf": 1.4142135623730951}, "mathgenerator.calculus.stationary_points": {"tf": 1}, "mathgenerator.computer_science.binary_2s_complement": {"tf": 1}, "mathgenerator.computer_science.binary_complement_1s": {"tf": 1}, "mathgenerator.computer_science.binary_to_decimal": {"tf": 1}, "mathgenerator.computer_science.binary_to_hex": {"tf": 1}, "mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1.4142135623730951}, "mathgenerator.misc.quotient_of_power_same_base": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_power": {"tf": 1}, "mathgenerator.misc.surds_comparison": {"tf": 1}, "mathgenerator.statistics.mean_median": {"tf": 1}}, "df": 28}, "2": {"0": {"docs": {"mathgenerator.geometry.perimeter_of_polygons": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.basic_math.multiplication": {"tf": 1}, "mathgenerator.basic_math.square_root": {"tf": 1}, "mathgenerator.geometry.perimeter_of_polygons": {"tf": 1}, "mathgenerator.geometry.sum_of_polygon_angles": {"tf": 1}, "mathgenerator.misc.geometric_progression": {"tf": 1}}, "df": 5}, "5": {"docs": {"mathgenerator.statistics.data_summary": {"tf": 1}}, "df": 1}, "6": {"docs": {"mathgenerator.misc.base_conversion": {"tf": 1}}, "df": 1}, "8": {"0": {"docs": {"mathgenerator.geometry.complementary_and_supplementary_angle": {"tf": 1}, "mathgenerator.geometry.fourth_angle_of_quadrilateral": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "9": {"0": {"0": {"docs": {"mathgenerator.misc.is_leap_year": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"mathgenerator.algebra.intersection_of_two_lines": {"tf": 1}, "mathgenerator.basic_math.cube_root": {"tf": 1}, "mathgenerator.basic_math.square_root": {"tf": 1}, "mathgenerator.computer_science.fibonacci_series": {"tf": 1}, "mathgenerator.misc.prime_factors": {"tf": 1}}, "df": 5}, "2": {"0": {"0": {"docs": {"mathgenerator.basic_math.percentage_difference": {"tf": 1}, "mathgenerator.misc.prime_factors": {"tf": 1}}, "df": 2}, "9": {"9": {"docs": {"mathgenerator.misc.is_leap_year": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {"mathgenerator.algebra.combine_like_terms": {"tf": 1}, "mathgenerator.algebra.distance_two_points": {"tf": 1.4142135623730951}, "mathgenerator.algebra.linear_equations": {"tf": 1.4142135623730951}, "mathgenerator.algebra.midpoint_of_two_points": {"tf": 1}, "mathgenerator.algebra.multiply_complex_numbers": {"tf": 1.4142135623730951}, "mathgenerator.algebra.vector_cross": {"tf": 1.4142135623730951}, "mathgenerator.algebra.vector_dot": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.exponentiation": {"tf": 1}, "mathgenerator.basic_math.square": {"tf": 1}, "mathgenerator.geometry.angle_btw_vectors": {"tf": 1}, "mathgenerator.geometry.angle_regular_polygon": {"tf": 1}, "mathgenerator.geometry.area_of_triangle": {"tf": 1.4142135623730951}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1.4142135623730951}, "mathgenerator.geometry.pythagorean_theorem": {"tf": 1}, "mathgenerator.geometry.surface_area_cone": {"tf": 1}, "mathgenerator.geometry.surface_area_cube": {"tf": 1}, "mathgenerator.geometry.surface_area_cuboid": {"tf": 1}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.surface_area_sphere": {"tf": 1}, "mathgenerator.geometry.volume_cone": {"tf": 1}, "mathgenerator.geometry.volume_cube": {"tf": 1}, "mathgenerator.geometry.volume_cuboid": {"tf": 1}, "mathgenerator.geometry.volume_cylinder": {"tf": 1}, "mathgenerator.geometry.volume_cone_frustum": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_pyramid": {"tf": 1.4142135623730951}, "mathgenerator.misc.complex_to_polar": {"tf": 1.4142135623730951}, "mathgenerator.misc.euclidian_norm": {"tf": 1}, "mathgenerator.misc.lcm": {"tf": 1}, "mathgenerator.statistics.combinations": {"tf": 1}, "mathgenerator.statistics.permutation": {"tf": 1}}, "df": 30}, "5": {"0": {"docs": {"mathgenerator.basic_math.is_composite": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.basic_math.division": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"mathgenerator.geometry.radian_to_deg": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.algebra.linear_equations": {"tf": 1}, "mathgenerator.basic_math.greatest_common_divisor": {"tf": 1}, "mathgenerator.misc.geometric_progression": {"tf": 1}}, "df": 3}, "3": {"0": {"docs": {"mathgenerator.geometry.basic_trigonometry": {"tf": 1}}, "df": 1}, "5": {"9": {"docs": {"mathgenerator.geometry.arc_length": {"tf": 1}, "mathgenerator.geometry.sector_area": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "6": {"0": {"docs": {"mathgenerator.geometry.degree_to_rad": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "9": {"docs": {"mathgenerator.geometry.basic_trigonometry": {"tf": 2.449489742783178}, "mathgenerator.geometry.surface_area_cone": {"tf": 1.4142135623730951}, "mathgenerator.geometry.surface_area_cube": {"tf": 1.4142135623730951}, "mathgenerator.geometry.surface_area_cuboid": {"tf": 1.4142135623730951}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 1.4142135623730951}, "mathgenerator.geometry.surface_area_pyramid": {"tf": 1.4142135623730951}, "mathgenerator.geometry.surface_area_sphere": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_cone": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_cube": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_cuboid": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_cylinder": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_cone_frustum": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_pyramid": {"tf": 1.4142135623730951}}, "df": 13}, "docs": {"mathgenerator.algebra.invert_matrix": {"tf": 1}, "mathgenerator.algebra.log": {"tf": 1}, "mathgenerator.calculus.stationary_points": {"tf": 1}, "mathgenerator.geometry.angle_regular_polygon": {"tf": 1}, "mathgenerator.misc.set_operation": {"tf": 1}, "mathgenerator.statistics.dice_sum_probability": {"tf": 1}}, "df": 6}, "4": {"0": {"0": {"0": {"docs": {"mathgenerator.misc.decimal_to_roman_numerals": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "9": {"6": {"docs": {"mathgenerator.computer_science.decimal_to_octal": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "5": {"docs": {"mathgenerator.geometry.basic_trigonometry": {"tf": 1}}, "df": 1}, "9": {"docs": {"mathgenerator.geometry.arc_length": {"tf": 1}, "mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.sector_area": {"tf": 1}}, "df": 3}, "docs": {"mathgenerator.misc.geometric_mean": {"tf": 1}, "mathgenerator.misc.harmonic_mean": {"tf": 1}}, "df": 2}, "5": {"0": {"docs": {"mathgenerator.basic_math.addition": {"tf": 1}, "mathgenerator.basic_math.power_of_powers": {"tf": 1}, "mathgenerator.geometry.surface_area_cone": {"tf": 1}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.valid_triangle": {"tf": 1}, "mathgenerator.geometry.volume_cone": {"tf": 1}, "mathgenerator.geometry.volume_cylinder": {"tf": 1}, "mathgenerator.geometry.volume_cone_frustum": {"tf": 1}, "mathgenerator.geometry.volume_pyramid": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_base": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_power": {"tf": 1}, "mathgenerator.statistics.data_summary": {"tf": 1}}, "df": 12}, "docs": {"mathgenerator.calculus.power_rule_differentiation": {"tf": 1}, "mathgenerator.calculus.power_rule_integration": {"tf": 1}, "mathgenerator.misc.geometric_progression": {"tf": 1}, "mathgenerator.statistics.data_summary": {"tf": 1}}, "df": 4}, "6": {"0": {"0": {"0": {"0": {"docs": {"mathgenerator.misc.base_conversion": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"mathgenerator.geometry.basic_trigonometry": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.algebra.intersection_of_two_lines": {"tf": 1}, "mathgenerator.basic_math.factorial": {"tf": 1}, "mathgenerator.geometry.radian_to_deg": {"tf": 1}, "mathgenerator.misc.geometric_progression": {"tf": 1}}, "df": 4}, "7": {"docs": {"mathgenerator.misc.geometric_progression": {"tf": 1}, "mathgenerator.misc.set_operation": {"tf": 1}}, "df": 2}, "8": {"9": {"docs": {"mathgenerator.geometry.third_angle_of_triangle": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.algebra.log": {"tf": 1}}, "df": 1}, "9": {"0": {"docs": {"mathgenerator.geometry.basic_trigonometry": {"tf": 1}, "mathgenerator.geometry.complementary_and_supplementary_angle": {"tf": 1}}, "df": 2}, "9": {"9": {"docs": {"mathgenerator.misc.minutes_to_hours": {"tf": 1}, "mathgenerator.misc.signum_function": {"tf": 1.4142135623730951}}, "df": 2}, "docs": {"mathgenerator.algebra.invert_matrix": {"tf": 1}, "mathgenerator.basic_math.addition": {"tf": 1}, "mathgenerator.basic_math.fraction_to_decimal": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.percentage": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.subtraction": {"tf": 1.4142135623730951}, "mathgenerator.computer_science.decimal_to_binary": {"tf": 1}, "mathgenerator.computer_science.modulo_division": {"tf": 1.4142135623730951}, "mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1}}, "df": 8}, "docs": {}, "df": 0}, "docs": {"mathgenerator.get_gen_list": {"tf": 2.6457513110645907}, "mathgenerator.gen_by_id": {"tf": 4.69041575982343}, "mathgenerator.getGenList": {"tf": 2.6457513110645907}, "mathgenerator.genById": {"tf": 4.69041575982343}, "mathgenerator.algebra.basic_algebra": {"tf": 3.7416573867739413}, "mathgenerator.algebra.combine_like_terms": {"tf": 5.477225575051661}, "mathgenerator.algebra.complex_quadratic": {"tf": 4.69041575982343}, "mathgenerator.algebra.compound_interest": {"tf": 5.477225575051661}, "mathgenerator.algebra.distance_two_points": {"tf": 4.69041575982343}, "mathgenerator.algebra.expanding": {"tf": 6.164414002968976}, "mathgenerator.algebra.factoring": {"tf": 4.69041575982343}, "mathgenerator.algebra.int_matrix_22_determinant": {"tf": 3.7416573867739413}, "mathgenerator.algebra.intersection_of_two_lines": {"tf": 7.745966692414834}, "mathgenerator.algebra.invert_matrix": {"tf": 5.744562646538029}, "mathgenerator.algebra.linear_equations": {"tf": 5.477225575051661}, "mathgenerator.algebra.log": {"tf": 4.69041575982343}, "mathgenerator.algebra.matrix_multiplication": {"tf": 4.69041575982343}, "mathgenerator.algebra.midpoint_of_two_points": {"tf": 3.7416573867739413}, "mathgenerator.algebra.multiply_complex_numbers": {"tf": 4.69041575982343}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 4.69041575982343}, "mathgenerator.algebra.quadratic_equation": {"tf": 3.7416573867739413}, "mathgenerator.algebra.simple_interest": {"tf": 5.477225575051661}, "mathgenerator.algebra.system_of_equations": {"tf": 5.477225575051661}, "mathgenerator.algebra.vector_cross": {"tf": 4.69041575982343}, "mathgenerator.algebra.vector_dot": {"tf": 4.69041575982343}, "mathgenerator.basic_math.absolute_difference": {"tf": 4.69041575982343}, "mathgenerator.basic_math.addition": {"tf": 4.69041575982343}, "mathgenerator.basic_math.compare_fractions": {"tf": 3.7416573867739413}, "mathgenerator.basic_math.cube_root": {"tf": 4.69041575982343}, "mathgenerator.basic_math.divide_fractions": {"tf": 3.7416573867739413}, "mathgenerator.basic_math.division": {"tf": 4.69041575982343}, "mathgenerator.basic_math.exponentiation": {"tf": 4.69041575982343}, "mathgenerator.basic_math.factorial": {"tf": 3.7416573867739413}, "mathgenerator.basic_math.fraction_multiplication": {"tf": 3.7416573867739413}, "mathgenerator.basic_math.fraction_to_decimal": {"tf": 4.69041575982343}, "mathgenerator.basic_math.greatest_common_divisor": {"tf": 4.69041575982343}, "mathgenerator.basic_math.is_composite": {"tf": 3.7416573867739413}, "mathgenerator.basic_math.is_prime": {"tf": 3.7416573867739413}, "mathgenerator.basic_math.multiplication": {"tf": 3.7416573867739413}, "mathgenerator.basic_math.percentage": {"tf": 4.69041575982343}, "mathgenerator.basic_math.percentage_difference": {"tf": 4.69041575982343}, "mathgenerator.basic_math.percentage_error": {"tf": 4.69041575982343}, "mathgenerator.basic_math.power_of_powers": {"tf": 4.69041575982343}, "mathgenerator.basic_math.square": {"tf": 3.7416573867739413}, "mathgenerator.basic_math.square_root": {"tf": 4.69041575982343}, "mathgenerator.basic_math.simplify_square_root": {"tf": 3.7416573867739413}, "mathgenerator.basic_math.subtraction": {"tf": 4.69041575982343}, "mathgenerator.calculus.definite_integral": {"tf": 3.7416573867739413}, "mathgenerator.calculus.power_rule_differentiation": {"tf": 5.477225575051661}, "mathgenerator.calculus.power_rule_integration": {"tf": 5.477225575051661}, "mathgenerator.calculus.stationary_points": {"tf": 4.69041575982343}, "mathgenerator.calculus.trig_differentiation": {"tf": 2.6457513110645907}, "mathgenerator.computer_science.bcd_to_decimal": {"tf": 3.7416573867739413}, "mathgenerator.computer_science.binary_2s_complement": {"tf": 3.7416573867739413}, "mathgenerator.computer_science.binary_complement_1s": {"tf": 3.7416573867739413}, "mathgenerator.computer_science.binary_to_decimal": {"tf": 3.7416573867739413}, "mathgenerator.computer_science.binary_to_hex": {"tf": 3.7416573867739413}, "mathgenerator.computer_science.decimal_to_bcd": {"tf": 3.7416573867739413}, "mathgenerator.computer_science.decimal_to_binary": {"tf": 3.7416573867739413}, "mathgenerator.computer_science.decimal_to_hexadeci": {"tf": 3.7416573867739413}, "mathgenerator.computer_science.decimal_to_octal": {"tf": 3.7416573867739413}, "mathgenerator.computer_science.fibonacci_series": {"tf": 3.7416573867739413}, "mathgenerator.computer_science.modulo_division": {"tf": 4.69041575982343}, "mathgenerator.computer_science.nth_fibonacci_number": {"tf": 3.7416573867739413}, "mathgenerator.geometry.angle_btw_vectors": {"tf": 3.7416573867739413}, "mathgenerator.geometry.angle_regular_polygon": {"tf": 4.69041575982343}, "mathgenerator.geometry.arc_length": {"tf": 4.69041575982343}, "mathgenerator.geometry.area_of_circle": {"tf": 3.7416573867739413}, "mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 4.69041575982343}, "mathgenerator.geometry.area_of_triangle": {"tf": 4.69041575982343}, "mathgenerator.geometry.basic_trigonometry": {"tf": 8.12403840463596}, "mathgenerator.geometry.circumference": {"tf": 3.7416573867739413}, "mathgenerator.geometry.complementary_and_supplementary_angle": {"tf": 4.69041575982343}, "mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 4.69041575982343}, "mathgenerator.geometry.degree_to_rad": {"tf": 3.7416573867739413}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 4.69041575982343}, "mathgenerator.geometry.fourth_angle_of_quadrilateral": {"tf": 3.7416573867739413}, "mathgenerator.geometry.perimeter_of_polygons": {"tf": 4.69041575982343}, "mathgenerator.geometry.pythagorean_theorem": {"tf": 3.7416573867739413}, "mathgenerator.geometry.radian_to_deg": {"tf": 3.7416573867739413}, "mathgenerator.geometry.sector_area": {"tf": 4.69041575982343}, "mathgenerator.geometry.sum_of_polygon_angles": {"tf": 3.7416573867739413}, "mathgenerator.geometry.surface_area_cone": {"tf": 5.656854249492381}, "mathgenerator.geometry.surface_area_cube": {"tf": 4.898979485566356}, "mathgenerator.geometry.surface_area_cuboid": {"tf": 4.898979485566356}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 5.656854249492381}, "mathgenerator.geometry.surface_area_pyramid": {"tf": 4}, "mathgenerator.geometry.surface_area_sphere": {"tf": 4.898979485566356}, "mathgenerator.geometry.third_angle_of_triangle": {"tf": 3.7416573867739413}, "mathgenerator.geometry.valid_triangle": {"tf": 3.7416573867739413}, "mathgenerator.geometry.volume_cone": {"tf": 5.656854249492381}, "mathgenerator.geometry.volume_cube": {"tf": 4.898979485566356}, "mathgenerator.geometry.volume_cuboid": {"tf": 4.898979485566356}, "mathgenerator.geometry.volume_cylinder": {"tf": 5.656854249492381}, "mathgenerator.geometry.volume_cone_frustum": {"tf": 6.324555320336759}, "mathgenerator.geometry.volume_hemisphere": {"tf": 3.7416573867739413}, "mathgenerator.geometry.volume_pyramid": {"tf": 6.324555320336759}, "mathgenerator.geometry.volume_sphere": {"tf": 3.7416573867739413}, "mathgenerator.misc.arithmetic_progression_sum": {"tf": 5.477225575051661}, "mathgenerator.misc.arithmetic_progression_term": {"tf": 5.477225575051661}, "mathgenerator.misc.base_conversion": {"tf": 4.69041575982343}, "mathgenerator.misc.binomial_distribution": {"tf": 2.6457513110645907}, "mathgenerator.misc.celsius_to_fahrenheit": {"tf": 3.7416573867739413}, "mathgenerator.misc.common_factors": {"tf": 3.7416573867739413}, "mathgenerator.misc.complex_to_polar": {"tf": 4.69041575982343}, "mathgenerator.misc.decimal_to_roman_numerals": {"tf": 3.7416573867739413}, "mathgenerator.misc.euclidian_norm": {"tf": 3.7416573867739413}, "mathgenerator.misc.factors": {"tf": 3.7416573867739413}, "mathgenerator.misc.geometric_mean": {"tf": 4.69041575982343}, "mathgenerator.misc.geometric_progression": {"tf": 6.782329983125268}, "mathgenerator.misc.harmonic_mean": {"tf": 4.69041575982343}, "mathgenerator.misc.is_leap_year": {"tf": 4.69041575982343}, "mathgenerator.misc.lcm": {"tf": 3.7416573867739413}, "mathgenerator.misc.minutes_to_hours": {"tf": 3.7416573867739413}, "mathgenerator.misc.prime_factors": {"tf": 4.69041575982343}, "mathgenerator.misc.product_of_scientific_notations": {"tf": 4.69041575982343}, "mathgenerator.misc.profit_loss_percent": {"tf": 4.69041575982343}, "mathgenerator.misc.quotient_of_power_same_base": {"tf": 4.69041575982343}, "mathgenerator.misc.quotient_of_power_same_power": {"tf": 4.69041575982343}, "mathgenerator.misc.set_operation": {"tf": 4.69041575982343}, "mathgenerator.misc.signum_function": {"tf": 4.69041575982343}, "mathgenerator.misc.surds_comparison": {"tf": 4.69041575982343}, "mathgenerator.statistics.combinations": {"tf": 3.7416573867739413}, "mathgenerator.statistics.conditional_probability": {"tf": 2.6457513110645907}, "mathgenerator.statistics.confidence_interval": {"tf": 2.6457513110645907}, "mathgenerator.statistics.data_summary": {"tf": 5.477225575051661}, "mathgenerator.statistics.dice_sum_probability": {"tf": 3.7416573867739413}, "mathgenerator.statistics.mean_median": {"tf": 3.7416573867739413}, "mathgenerator.statistics.permutation": {"tf": 3.7416573867739413}}, "df": 129, "i": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.gen_by_id": {"tf": 1}, "mathgenerator.genById": {"tf": 1}}, "df": 2}, "n": {"docs": {"mathgenerator.algebra.invert_matrix": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.algebra.invert_matrix": {"tf": 1}}, "df": 1}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.algebra.invert_matrix": {"tf": 1}}, "df": 1}}}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.basic_math.factorial": {"tf": 1}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.algebra.multiply_complex_numbers": {"tf": 1.4142135623730951}, "mathgenerator.misc.complex_to_polar": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}}}, "a": {"docs": {"mathgenerator.algebra.expanding": {"tf": 1}, "mathgenerator.basic_math.absolute_difference": {"tf": 1}, "mathgenerator.basic_math.division": {"tf": 1}, "mathgenerator.geometry.area_of_triangle": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_sum": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_term": {"tf": 1}}, "df": 6, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.gen_by_id": {"tf": 1}, "mathgenerator.genById": {"tf": 1}}, "df": 2}}}, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.basic_math.addition": {"tf": 1}}, "df": 1}}}}}, "m": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.arc_length": {"tf": 1}, "mathgenerator.geometry.fourth_angle_of_quadrilateral": {"tf": 1}, "mathgenerator.geometry.sector_area": {"tf": 1}, "mathgenerator.geometry.third_angle_of_triangle": {"tf": 1}}, "df": 4, "s": {"docs": {"mathgenerator.geometry.basic_trigonometry": {"tf": 1}}, "df": 1}}}}}}, "k": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.gen_by_id": {"tf": 1}, "mathgenerator.genById": {"tf": 1}}, "df": 2}}}}}}, "m": {"docs": {"mathgenerator.algebra.intersection_of_two_lines": {"tf": 1.4142135623730951}, "mathgenerator.geometry.surface_area_cone": {"tf": 1}, "mathgenerator.geometry.surface_area_cube": {"tf": 1}, "mathgenerator.geometry.surface_area_cuboid": {"tf": 1}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.surface_area_pyramid": {"tf": 1}, "mathgenerator.geometry.surface_area_sphere": {"tf": 1}, "mathgenerator.geometry.volume_cone": {"tf": 1}, "mathgenerator.geometry.volume_cube": {"tf": 1}, "mathgenerator.geometry.volume_cuboid": {"tf": 1}, "mathgenerator.geometry.volume_cylinder": {"tf": 1}, "mathgenerator.geometry.volume_cone_frustum": {"tf": 1}, "mathgenerator.geometry.volume_pyramid": {"tf": 1}}, "df": 13, "a": {"docs": {}, "df": 0, "x": {"docs": {"mathgenerator.algebra.basic_algebra": {"tf": 1}, "mathgenerator.algebra.combine_like_terms": {"tf": 1.7320508075688772}, "mathgenerator.algebra.complex_quadratic": {"tf": 1}, "mathgenerator.algebra.compound_interest": {"tf": 1.7320508075688772}, "mathgenerator.algebra.distance_two_points": {"tf": 1}, "mathgenerator.algebra.int_matrix_22_determinant": {"tf": 1}, "mathgenerator.algebra.intersection_of_two_lines": {"tf": 1.7320508075688772}, "mathgenerator.algebra.invert_matrix": {"tf": 1}, "mathgenerator.algebra.log": {"tf": 1.4142135623730951}, "mathgenerator.algebra.matrix_multiplication": {"tf": 1.4142135623730951}, "mathgenerator.algebra.midpoint_of_two_points": {"tf": 1}, "mathgenerator.algebra.multiply_complex_numbers": {"tf": 1}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1.4142135623730951}, "mathgenerator.algebra.quadratic_equation": {"tf": 1}, "mathgenerator.algebra.simple_interest": {"tf": 1.7320508075688772}, "mathgenerator.algebra.vector_cross": {"tf": 1}, "mathgenerator.algebra.vector_dot": {"tf": 1}, "mathgenerator.basic_math.absolute_difference": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.addition": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.compare_fractions": {"tf": 1}, "mathgenerator.basic_math.cube_root": {"tf": 1}, "mathgenerator.basic_math.divide_fractions": {"tf": 1}, "mathgenerator.basic_math.division": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.exponentiation": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.factorial": {"tf": 1}, "mathgenerator.basic_math.fraction_multiplication": {"tf": 1}, "mathgenerator.basic_math.fraction_to_decimal": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.greatest_common_divisor": {"tf": 1}, "mathgenerator.basic_math.is_composite": {"tf": 1}, "mathgenerator.basic_math.is_prime": {"tf": 1}, "mathgenerator.basic_math.multiplication": {"tf": 1}, "mathgenerator.basic_math.percentage": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.percentage_difference": {"tf": 1}, "mathgenerator.basic_math.percentage_error": {"tf": 1}, "mathgenerator.basic_math.power_of_powers": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.square": {"tf": 1}, "mathgenerator.basic_math.square_root": {"tf": 1}, "mathgenerator.basic_math.simplify_square_root": {"tf": 1}, "mathgenerator.basic_math.subtraction": {"tf": 1.4142135623730951}, "mathgenerator.calculus.definite_integral": {"tf": 1}, "mathgenerator.calculus.power_rule_differentiation": {"tf": 1.7320508075688772}, "mathgenerator.calculus.power_rule_integration": {"tf": 1.7320508075688772}, "mathgenerator.calculus.stationary_points": {"tf": 1.4142135623730951}, "mathgenerator.computer_science.bcd_to_decimal": {"tf": 1}, "mathgenerator.computer_science.binary_to_decimal": {"tf": 1}, "mathgenerator.computer_science.binary_to_hex": {"tf": 1}, "mathgenerator.computer_science.decimal_to_bcd": {"tf": 1}, "mathgenerator.computer_science.decimal_to_binary": {"tf": 1}, "mathgenerator.computer_science.decimal_to_hexadeci": {"tf": 1}, "mathgenerator.computer_science.decimal_to_octal": {"tf": 1}, "mathgenerator.computer_science.modulo_division": {"tf": 1.4142135623730951}, "mathgenerator.computer_science.nth_fibonacci_number": {"tf": 1}, "mathgenerator.geometry.angle_btw_vectors": {"tf": 1}, "mathgenerator.geometry.angle_regular_polygon": {"tf": 1}, "mathgenerator.geometry.arc_length": {"tf": 1.4142135623730951}, "mathgenerator.geometry.area_of_circle": {"tf": 1}, "mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1.4142135623730951}, "mathgenerator.geometry.area_of_triangle": {"tf": 1.4142135623730951}, "mathgenerator.geometry.circumference": {"tf": 1}, "mathgenerator.geometry.complementary_and_supplementary_angle": {"tf": 1.4142135623730951}, "mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1.4142135623730951}, "mathgenerator.geometry.degree_to_rad": {"tf": 1}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}, "mathgenerator.geometry.fourth_angle_of_quadrilateral": {"tf": 1}, "mathgenerator.geometry.perimeter_of_polygons": {"tf": 1.4142135623730951}, "mathgenerator.geometry.pythagorean_theorem": {"tf": 1}, "mathgenerator.geometry.radian_to_deg": {"tf": 1}, "mathgenerator.geometry.sector_area": {"tf": 1.4142135623730951}, "mathgenerator.geometry.sum_of_polygon_angles": {"tf": 1}, "mathgenerator.geometry.surface_area_cone": {"tf": 1.4142135623730951}, "mathgenerator.geometry.surface_area_cube": {"tf": 1}, "mathgenerator.geometry.surface_area_cuboid": {"tf": 1}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 1.4142135623730951}, "mathgenerator.geometry.surface_area_sphere": {"tf": 1}, "mathgenerator.geometry.third_angle_of_triangle": {"tf": 1}, "mathgenerator.geometry.valid_triangle": {"tf": 1}, "mathgenerator.geometry.volume_cone": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_cube": {"tf": 1}, "mathgenerator.geometry.volume_cuboid": {"tf": 1}, "mathgenerator.geometry.volume_cylinder": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_cone_frustum": {"tf": 1.7320508075688772}, "mathgenerator.geometry.volume_hemisphere": {"tf": 1}, "mathgenerator.geometry.volume_pyramid": {"tf": 1.7320508075688772}, "mathgenerator.geometry.volume_sphere": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_sum": {"tf": 1.7320508075688772}, "mathgenerator.misc.arithmetic_progression_term": {"tf": 1.7320508075688772}, "mathgenerator.misc.base_conversion": {"tf": 1.4142135623730951}, "mathgenerator.misc.celsius_to_fahrenheit": {"tf": 1}, "mathgenerator.misc.common_factors": {"tf": 1}, "mathgenerator.misc.complex_to_polar": {"tf": 1}, "mathgenerator.misc.decimal_to_roman_numerals": {"tf": 1}, "mathgenerator.misc.factors": {"tf": 1}, "mathgenerator.misc.geometric_mean": {"tf": 1.4142135623730951}, "mathgenerator.misc.geometric_progression": {"tf": 1}, "mathgenerator.misc.harmonic_mean": {"tf": 1.4142135623730951}, "mathgenerator.misc.is_leap_year": {"tf": 1}, "mathgenerator.misc.lcm": {"tf": 1}, "mathgenerator.misc.minutes_to_hours": {"tf": 1}, "mathgenerator.misc.prime_factors": {"tf": 1}, "mathgenerator.misc.product_of_scientific_notations": {"tf": 1}, "mathgenerator.misc.profit_loss_percent": {"tf": 1.4142135623730951}, "mathgenerator.misc.quotient_of_power_same_base": {"tf": 1.4142135623730951}, "mathgenerator.misc.quotient_of_power_same_power": {"tf": 1.4142135623730951}, "mathgenerator.misc.set_operation": {"tf": 1}, "mathgenerator.misc.signum_function": {"tf": 1}, "mathgenerator.misc.surds_comparison": {"tf": 1.4142135623730951}, "mathgenerator.statistics.combinations": {"tf": 1}, "mathgenerator.statistics.data_summary": {"tf": 1}, "mathgenerator.statistics.dice_sum_probability": {"tf": 1}, "mathgenerator.statistics.mean_median": {"tf": 1}, "mathgenerator.statistics.permutation": {"tf": 1}}, "df": 111, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.computer_science.binary_2s_complement": {"tf": 1}, "mathgenerator.computer_science.binary_complement_1s": {"tf": 1}}, "df": 2}}}}}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.misc.euclidian_norm": {"tf": 1}}, "df": 1}}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {"mathgenerator.algebra.int_matrix_22_determinant": {"tf": 1}, "mathgenerator.algebra.invert_matrix": {"tf": 1.4142135623730951}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1}}, "df": 3, "e": {"docs": {"mathgenerator.algebra.invert_matrix": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.algebra.distance_two_points": {"tf": 1}, "mathgenerator.algebra.intersection_of_two_lines": {"tf": 1.7320508075688772}, "mathgenerator.algebra.multiply_complex_numbers": {"tf": 1}, "mathgenerator.algebra.vector_cross": {"tf": 1}, "mathgenerator.algebra.vector_dot": {"tf": 1}, "mathgenerator.basic_math.cube_root": {"tf": 1}, "mathgenerator.basic_math.percentage_difference": {"tf": 1}, "mathgenerator.basic_math.percentage_error": {"tf": 1}, "mathgenerator.basic_math.square_root": {"tf": 1}, "mathgenerator.computer_science.fibonacci_series": {"tf": 1}, "mathgenerator.geometry.angle_regular_polygon": {"tf": 1}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}, "mathgenerator.misc.complex_to_polar": {"tf": 1}, "mathgenerator.misc.geometric_progression": {"tf": 1}, "mathgenerator.misc.prime_factors": {"tf": 1}, "mathgenerator.misc.product_of_scientific_notations": {"tf": 1}, "mathgenerator.misc.set_operation": {"tf": 1}, "mathgenerator.misc.signum_function": {"tf": 1}, "mathgenerator.statistics.data_summary": {"tf": 1}}, "df": 19, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.basic_math.subtraction": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.misc.minutes_to_hours": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.misc.is_leap_year": {"tf": 1}}, "df": 1}}}}}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.algebra.system_of_equations": {"tf": 1}}, "df": 1, "i": {"docs": {"mathgenerator.basic_math.multiplication": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {"mathgenerator.computer_science.modulo_division": {"tf": 1}}, "df": 1}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.algebra.linear_equations": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.algebra.basic_algebra": {"tf": 1}, "mathgenerator.basic_math.simplify_square_root": {"tf": 1}}, "df": 2}}}}}}, "l": {"docs": {"mathgenerator.algebra.distance_two_points": {"tf": 1.4142135623730951}, "mathgenerator.algebra.int_matrix_22_determinant": {"tf": 1}, "mathgenerator.algebra.log": {"tf": 1}, "mathgenerator.algebra.matrix_multiplication": {"tf": 1}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1}, "mathgenerator.algebra.quadratic_equation": {"tf": 1}, "mathgenerator.algebra.vector_cross": {"tf": 1.4142135623730951}, "mathgenerator.algebra.vector_dot": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.compare_fractions": {"tf": 1}, "mathgenerator.basic_math.divide_fractions": {"tf": 1}, "mathgenerator.basic_math.fraction_multiplication": {"tf": 1}, "mathgenerator.geometry.angle_regular_polygon": {"tf": 1.4142135623730951}, "mathgenerator.misc.common_factors": {"tf": 1}, "mathgenerator.misc.factors": {"tf": 1}, "mathgenerator.misc.lcm": {"tf": 1}, "mathgenerator.misc.prime_factors": {"tf": 1.4142135623730951}, "mathgenerator.misc.product_of_scientific_notations": {"tf": 1.4142135623730951}, "mathgenerator.statistics.data_summary": {"tf": 1.4142135623730951}}, "df": 18, "u": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.algebra.midpoint_of_two_points": {"tf": 1}, "mathgenerator.basic_math.percentage": {"tf": 1}, "mathgenerator.basic_math.percentage_difference": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.percentage_error": {"tf": 1.4142135623730951}, "mathgenerator.misc.geometric_mean": {"tf": 1}, "mathgenerator.misc.geometric_progression": {"tf": 1.4142135623730951}, "mathgenerator.misc.harmonic_mean": {"tf": 1}, "mathgenerator.misc.surds_comparison": {"tf": 1}}, "df": 8, "s": {"docs": {"mathgenerator.misc.geometric_progression": {"tf": 1}, "mathgenerator.statistics.data_summary": {"tf": 1}}, "df": 2}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {"mathgenerator.algebra.combine_like_terms": {"tf": 1}, "mathgenerator.calculus.definite_integral": {"tf": 1}, "mathgenerator.calculus.power_rule_differentiation": {"tf": 1}, "mathgenerator.calculus.power_rule_integration": {"tf": 1}, "mathgenerator.calculus.stationary_points": {"tf": 1}}, "df": 5, "f": {"docs": {"mathgenerator.algebra.linear_equations": {"tf": 1}, "mathgenerator.algebra.system_of_equations": {"tf": 1}}, "df": 2}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.basic_math.greatest_common_divisor": {"tf": 1}, "mathgenerator.misc.geometric_mean": {"tf": 1}, "mathgenerator.misc.harmonic_mean": {"tf": 1}}, "df": 3}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}}, "s": {"docs": {"mathgenerator.geometry.basic_trigonometry": {"tf": 1}}, "df": 1}, "m": {"docs": {}, "df": 0, "p": {"docs": {"mathgenerator.geometry.complementary_and_supplementary_angle": {"tf": 1}}, "df": 1}}}, "p": {"docs": {"mathgenerator.misc.profit_loss_percent": {"tf": 1}}, "df": 1}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "p": {"docs": {"mathgenerator.algebra.combine_like_terms": {"tf": 1}, "mathgenerator.calculus.power_rule_differentiation": {"tf": 1}, "mathgenerator.calculus.power_rule_integration": {"tf": 1}, "mathgenerator.calculus.stationary_points": {"tf": 1}, "mathgenerator.misc.product_of_scientific_notations": {"tf": 1.4142135623730951}}, "df": 5, "o": {"docs": {"mathgenerator.basic_math.exponentiation": {"tf": 1}}, "df": 1}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.algebra.invert_matrix": {"tf": 1}}, "df": 1, "s": {"docs": {"mathgenerator.algebra.invert_matrix": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"mathgenerator.misc.geometric_progression": {"tf": 1.4142135623730951}}, "df": 1, "s": {"docs": {"mathgenerator.algebra.combine_like_terms": {"tf": 1}, "mathgenerator.calculus.power_rule_differentiation": {"tf": 1}, "mathgenerator.calculus.power_rule_integration": {"tf": 1}}, "df": 3}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {"mathgenerator.misc.celsius_to_fahrenheit": {"tf": 1}}, "df": 1}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.algebra.complex_quadratic": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.algebra.compound_interest": {"tf": 1}, "mathgenerator.algebra.simple_interest": {"tf": 1}}, "df": 2}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.algebra.invert_matrix": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.geometry.basic_trigonometry": {"tf": 1}}, "df": 1}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {"mathgenerator.algebra.complex_quadratic": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.algebra.compound_interest": {"tf": 1}, "mathgenerator.algebra.simple_interest": {"tf": 1}}, "df": 2}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.basic_math.percentage": {"tf": 1}}, "df": 1}}}}}}}}}, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.basic_math.power_of_powers": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_base": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_power": {"tf": 1}}, "df": 3}}}}}, "r": {"1": {"docs": {"mathgenerator.geometry.volume_cone_frustum": {"tf": 1}}, "df": 1}, "2": {"docs": {"mathgenerator.geometry.volume_cone_frustum": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.algebra.complex_quadratic": {"tf": 1}, "mathgenerator.algebra.expanding": {"tf": 2}, "mathgenerator.algebra.factoring": {"tf": 1.4142135623730951}, "mathgenerator.algebra.linear_equations": {"tf": 1.4142135623730951}, "mathgenerator.algebra.system_of_equations": {"tf": 1.7320508075688772}}, "df": 5}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.algebra.compound_interest": {"tf": 1}, "mathgenerator.algebra.simple_interest": {"tf": 1}}, "df": 2}}, "d": {"docs": {"mathgenerator.geometry.radian_to_deg": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.geometry.arc_length": {"tf": 1}, "mathgenerator.geometry.area_of_circle": {"tf": 1}, "mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1}, "mathgenerator.geometry.circumference": {"tf": 1}, "mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.sector_area": {"tf": 1}, "mathgenerator.geometry.surface_area_cone": {"tf": 1}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.volume_cone": {"tf": 1}, "mathgenerator.geometry.volume_cylinder": {"tf": 1}, "mathgenerator.geometry.volume_hemisphere": {"tf": 1}, "mathgenerator.geometry.volume_sphere": {"tf": 1}}, "df": 12}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator.algebra.multiply_complex_numbers": {"tf": 1.4142135623730951}, "mathgenerator.misc.complex_to_polar": {"tf": 1.4142135623730951}}, "df": 2}}, "s": {"docs": {"mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1}, "mathgenerator.basic_math.fraction_to_decimal": {"tf": 1}, "mathgenerator.computer_science.modulo_division": {"tf": 1}}, "df": 3}}, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.misc.surds_comparison": {"tf": 1}}, "df": 1}}}}, "x": {"1": {"docs": {"mathgenerator.algebra.expanding": {"tf": 1}, "mathgenerator.algebra.factoring": {"tf": 1}}, "df": 2}, "2": {"docs": {"mathgenerator.algebra.expanding": {"tf": 1}, "mathgenerator.algebra.factoring": {"tf": 1}}, "df": 2}, "docs": {"mathgenerator.algebra.system_of_equations": {"tf": 1}}, "df": 1, "y": {"docs": {"mathgenerator.algebra.distance_two_points": {"tf": 1.4142135623730951}}, "df": 1}}, "b": {"docs": {"mathgenerator.algebra.expanding": {"tf": 1}, "mathgenerator.algebra.intersection_of_two_lines": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.absolute_difference": {"tf": 1}, "mathgenerator.basic_math.division": {"tf": 1}, "mathgenerator.geometry.area_of_triangle": {"tf": 1}}, "df": 5, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.algebra.log": {"tf": 1}, "mathgenerator.basic_math.exponentiation": {"tf": 1}, "mathgenerator.basic_math.power_of_powers": {"tf": 1}, "mathgenerator.misc.base_conversion": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_base": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_power": {"tf": 1}}, "df": 6}}}}, "d": {"docs": {"mathgenerator.misc.arithmetic_progression_sum": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_term": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.algebra.intersection_of_two_lines": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}, "c": {"docs": {"mathgenerator.computer_science.decimal_to_binary": {"tf": 1}, "mathgenerator.computer_science.decimal_to_hexadeci": {"tf": 1}}, "df": 2, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator.computer_science.decimal_to_octal": {"tf": 1}, "mathgenerator.misc.decimal_to_roman_numerals": {"tf": 1}}, "df": 2}}}}}, "g": {"docs": {"mathgenerator.geometry.degree_to_rad": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "m": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.algebra.invert_matrix": {"tf": 1}}, "df": 1}}}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.basic_math.fraction_to_decimal": {"tf": 1}}, "df": 1}}}, "f": {"docs": {}, "df": 0, "f": {"docs": {"mathgenerator.basic_math.subtraction": {"tf": 1}}, "df": 1}}, "g": {"docs": {"mathgenerator.computer_science.binary_to_decimal": {"tf": 1}, "mathgenerator.computer_science.binary_to_hex": {"tf": 1}}, "df": 2}, "c": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.statistics.dice_sum_probability": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.algebra.invert_matrix": {"tf": 1}, "mathgenerator.basic_math.square": {"tf": 1}}, "df": 2}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {"mathgenerator.basic_math.addition": {"tf": 1}, "mathgenerator.misc.geometric_progression": {"tf": 1}}, "df": 2}, "p": {"docs": {}, "df": 0, "p": {"docs": {"mathgenerator.geometry.complementary_and_supplementary_angle": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.geometry.basic_trigonometry": {"tf": 1}}, "df": 1}, "d": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.surface_area_cube": {"tf": 1}, "mathgenerator.geometry.surface_area_cuboid": {"tf": 1}, "mathgenerator.geometry.surface_area_sphere": {"tf": 1}, "mathgenerator.geometry.valid_triangle": {"tf": 1}, "mathgenerator.geometry.volume_cube": {"tf": 1}, "mathgenerator.geometry.volume_cuboid": {"tf": 1}}, "df": 6, "s": {"docs": {"mathgenerator.geometry.perimeter_of_polygons": {"tf": 1}, "mathgenerator.geometry.sum_of_polygon_angles": {"tf": 1}}, "df": 2}}}, "z": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.misc.set_operation": {"tf": 1.4142135623730951}}, "df": 1}}}, "p": {"docs": {"mathgenerator.misc.profit_loss_percent": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.algebra.invert_matrix": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {"mathgenerator.algebra.linear_equations": {"tf": 1}, "mathgenerator.computer_science.nth_fibonacci_number": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_sum": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_term": {"tf": 1}, "mathgenerator.misc.geometric_progression": {"tf": 1}}, "df": 5, "u": {"docs": {}, "df": 0, "m": {"docs": {"mathgenerator.algebra.multiply_complex_numbers": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.greatest_common_divisor": {"tf": 1}, "mathgenerator.basic_math.is_composite": {"tf": 1}, "mathgenerator.basic_math.is_prime": {"tf": 1}, "mathgenerator.basic_math.square": {"tf": 1}, "mathgenerator.misc.base_conversion": {"tf": 1}, "mathgenerator.misc.complex_to_polar": {"tf": 1.4142135623730951}}, "df": 7, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.computer_science.bcd_to_decimal": {"tf": 1}, "mathgenerator.computer_science.decimal_to_bcd": {"tf": 1}, "mathgenerator.misc.geometric_progression": {"tf": 1}, "mathgenerator.misc.is_leap_year": {"tf": 1}, "mathgenerator.statistics.data_summary": {"tf": 1}}, "df": 5, "s": {"docs": {"mathgenerator.basic_math.greatest_common_divisor": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {"mathgenerator.basic_math.cube_root": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.square_root": {"tf": 1.4142135623730951}, "mathgenerator.computer_science.fibonacci_series": {"tf": 1}}, "df": 3}}, "y": {"docs": {"mathgenerator.algebra.system_of_equations": {"tf": 1}}, "df": 1}, "f": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.geometry.basic_trigonometry": {"tf": 1}}, "df": 1}}}}}}}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.surface_area_cone": {"tf": 1}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.volume_cone": {"tf": 1}, "mathgenerator.geometry.volume_cylinder": {"tf": 1}, "mathgenerator.geometry.volume_cone_frustum": {"tf": 1}, "mathgenerator.geometry.volume_pyramid": {"tf": 1}}, "df": 7}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"mathgenerator.geometry.perimeter_of_polygons": {"tf": 1}, "mathgenerator.geometry.pythagorean_theorem": {"tf": 1}, "mathgenerator.geometry.valid_triangle": {"tf": 1}, "mathgenerator.geometry.volume_pyramid": {"tf": 1}, "mathgenerator.statistics.mean_median": {"tf": 1}}, "df": 5, "g": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"mathgenerator.statistics.combinations": {"tf": 1}, "mathgenerator.statistics.permutation": {"tf": 1}}, "df": 2}}}}}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.geometry.surface_area_cone": {"tf": 1}, "mathgenerator.geometry.surface_area_cube": {"tf": 1}, "mathgenerator.geometry.surface_area_cuboid": {"tf": 1}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.surface_area_pyramid": {"tf": 1}, "mathgenerator.geometry.surface_area_sphere": {"tf": 1}, "mathgenerator.geometry.volume_cone": {"tf": 1}, "mathgenerator.geometry.volume_cube": {"tf": 1}, "mathgenerator.geometry.volume_cuboid": {"tf": 1}, "mathgenerator.geometry.volume_cylinder": {"tf": 1}, "mathgenerator.geometry.volume_cone_frustum": {"tf": 1}, "mathgenerator.geometry.volume_pyramid": {"tf": 1}}, "df": 12}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"mathgenerator.geometry.volume_pyramid": {"tf": 1}}, "df": 1}}}}}}}, "bases": {"root": {"docs": {}, "df": 0}}, "doc": {"root": {"0": {"0": {"0": {"0": {"1": {"1": {"0": {"docs": {"mathgenerator.computer_science.binary_complement_1s": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "1": {"1": {"0": {"docs": {"mathgenerator.computer_science.binary_to_decimal": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "1": {"0": {"1": {"0": {"1": {"docs": {"mathgenerator.computer_science.binary_to_hex": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "4": {"docs": {"mathgenerator.algebra.quadratic_equation": {"tf": 1}, "mathgenerator.basic_math.fraction_to_decimal": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_base": {"tf": 1}}, "df": 3}, "7": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "8": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}, "mathgenerator.geometry.area_of_circle": {"tf": 1}}, "df": 2}, "docs": {"mathgenerator": {"tf": 1.7320508075688772}, "mathgenerator.algebra.basic_algebra": {"tf": 1}, "mathgenerator.algebra.complex_quadratic": {"tf": 1}, "mathgenerator.algebra.invert_matrix": {"tf": 1.4142135623730951}, "mathgenerator.algebra.midpoint_of_two_points": {"tf": 1.7320508075688772}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1.4142135623730951}, "mathgenerator.algebra.quadratic_equation": {"tf": 1.4142135623730951}, "mathgenerator.calculus.definite_integral": {"tf": 1}, "mathgenerator.computer_science.fibonacci_series": {"tf": 1}, "mathgenerator.geometry.angle_btw_vectors": {"tf": 1}, "mathgenerator.geometry.angle_regular_polygon": {"tf": 1}, "mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_pyramid": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_sum": {"tf": 1}, "mathgenerator.misc.geometric_progression": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_base": {"tf": 1}}, "df": 16, "x": {"1": {"5": {"docs": {"mathgenerator.computer_science.binary_to_hex": {"tf": 1}}, "df": 1}, "9": {"docs": {}, "df": 0, "a": {"docs": {"mathgenerator.computer_science.decimal_to_hexadeci": {"tf": 1}}, "df": 1}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "o": {"7": {"1": {"6": {"2": {"docs": {"mathgenerator.computer_science.decimal_to_octal": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "\\": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"mathgenerator.misc.complex_to_polar": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "1": {"0": {"0": {"docs": {"mathgenerator.computer_science.decimal_to_binary": {"tf": 1}, "mathgenerator.misc.common_factors": {"tf": 1}}, "df": 2}, "1": {"1": {"docs": {"mathgenerator.computer_science.binary_2s_complement": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.computer_science.binary_2s_complement": {"tf": 1}}, "df": 1}, "2": {"8": {"1": {"6": {"0": {"docs": {"mathgenerator.statistics.permutation": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_term": {"tf": 1}}, "df": 2}, "5": {"8": {"3": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {"mathgenerator.geometry.perimeter_of_polygons": {"tf": 1}}, "df": 1}, "6": {"4": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0, "$": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "m": {"docs": {"mathgenerator.geometry.perimeter_of_polygons": {"tf": 1}}, "df": 1}}}}, "8": {"0": {"docs": {"mathgenerator.geometry.sum_of_polygon_angles": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {"mathgenerator": {"tf": 1.4142135623730951}, "mathgenerator.algebra.midpoint_of_two_points": {"tf": 1}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1}, "mathgenerator.algebra.simple_interest": {"tf": 1}, "mathgenerator.algebra.vector_cross": {"tf": 1}, "mathgenerator.basic_math.percentage_difference": {"tf": 1}, "mathgenerator.computer_science.modulo_division": {"tf": 1}, "mathgenerator.geometry.pythagorean_theorem": {"tf": 1}, "mathgenerator.geometry.third_angle_of_triangle": {"tf": 1}, "mathgenerator.geometry.valid_triangle": {"tf": 1}, "mathgenerator.misc.base_conversion": {"tf": 1}, "mathgenerator.misc.product_of_scientific_notations": {"tf": 1}, "mathgenerator.statistics.data_summary": {"tf": 1}}, "df": 13, "x": {"docs": {"mathgenerator.algebra.linear_equations": {"tf": 1}}, "df": 1}, "\\": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"9": {"docs": {"mathgenerator.basic_math.multiplication": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}, "m": {"docs": {"mathgenerator.geometry.volume_cylinder": {"tf": 1}}, "df": 1}, "t": {"docs": {}, "df": 0, "h": {"docs": {"mathgenerator.misc.geometric_progression": {"tf": 1.4142135623730951}}, "df": 1}}, "^": {"docs": {}, "df": 0, "{": {"6": {"7": {"docs": {"mathgenerator.misc.product_of_scientific_notations": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "8": {"docs": {"mathgenerator.misc.quotient_of_power_same_power": {"tf": 1}}, "df": 1}, "9": {"docs": {"mathgenerator.misc.product_of_scientific_notations": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}, "1": {"1": {"1": {"0": {"0": {"1": {"docs": {"mathgenerator.computer_science.binary_complement_1s": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "2": {"6": {"4": {"docs": {"mathgenerator.misc.geometric_progression": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "3": {"0": {"9": {"7": {"docs": {"mathgenerator.geometry.volume_sphere": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1}, "mathgenerator.geometry.degree_to_rad": {"tf": 1}}, "df": 2}, "docs": {"mathgenerator.algebra.vector_cross": {"tf": 1}, "mathgenerator.misc.factors": {"tf": 1}, "mathgenerator.misc.geometric_progression": {"tf": 1.4142135623730951}, "mathgenerator.misc.product_of_scientific_notations": {"tf": 1}}, "df": 4, "m": {"docs": {"mathgenerator.geometry.surface_area_cuboid": {"tf": 1}, "mathgenerator.geometry.volume_cone": {"tf": 1}, "mathgenerator.geometry.volume_cuboid": {"tf": 1}}, "df": 3}}, "2": {"2": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "6": {"docs": {"mathgenerator.algebra.vector_cross": {"tf": 1}}, "df": 1}, "7": {"4": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "7": {"docs": {"mathgenerator.geometry.sector_area": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "8": {"docs": {"mathgenerator.misc.euclidian_norm": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.algebra.invert_matrix": {"tf": 1}, "mathgenerator.algebra.matrix_multiplication": {"tf": 1}, "mathgenerator.algebra.vector_dot": {"tf": 1}, "mathgenerator.basic_math.absolute_difference": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_term": {"tf": 1}}, "df": 5}, "3": {"3": {"docs": {"mathgenerator.basic_math.percentage_difference": {"tf": 1}, "mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 2}, "4": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "5": {"docs": {"mathgenerator.geometry.angle_regular_polygon": {"tf": 1}}, "df": 1}, "6": {"3": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {"mathgenerator.algebra.invert_matrix": {"tf": 1}, "mathgenerator.algebra.linear_equations": {"tf": 1}, "mathgenerator.computer_science.fibonacci_series": {"tf": 1}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}, "mathgenerator.geometry.pythagorean_theorem": {"tf": 1}, "mathgenerator.misc.minutes_to_hours": {"tf": 1}, "mathgenerator.statistics.data_summary": {"tf": 1}}, "df": 7, "m": {"docs": {"mathgenerator.geometry.volume_cuboid": {"tf": 1}}, "df": 1}}, "4": {"1": {"docs": {"mathgenerator.algebra.linear_equations": {"tf": 1}, "mathgenerator.geometry.arc_length": {"tf": 1}}, "df": 2}, "5": {"docs": {"mathgenerator.misc.arithmetic_progression_sum": {"tf": 1}}, "df": 1}, "8": {"docs": {"mathgenerator.geometry.third_angle_of_triangle": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1.7320508075688772}, "mathgenerator.geometry.valid_triangle": {"tf": 1}, "mathgenerator.geometry.volume_hemisphere": {"tf": 1}}, "df": 3, "+": {"1": {"5": {"docs": {}, "df": 0, "j": {"docs": {"mathgenerator.algebra.multiply_complex_numbers": {"tf": 1}}, "df": 1}}, "8": {"docs": {}, "df": 0, "j": {"docs": {"mathgenerator.algebra.multiply_complex_numbers": {"tf": 1}}, "df": 1}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "5": {"6": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.algebra.distance_two_points": {"tf": 1}, "mathgenerator.algebra.matrix_multiplication": {"tf": 1}, "mathgenerator.geometry.angle_btw_vectors": {"tf": 1}, "mathgenerator.geometry.complementary_and_supplementary_angle": {"tf": 1}, "mathgenerator.statistics.data_summary": {"tf": 1}}, "df": 5, "m": {"docs": {"mathgenerator.geometry.surface_area_cylinder": {"tf": 1}}, "df": 1}}, "6": {"2": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}, "mathgenerator.geometry.fourth_angle_of_quadrilateral": {"tf": 1}}, "df": 2}, "9": {"docs": {"mathgenerator.misc.quotient_of_power_same_power": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.algebra.distance_two_points": {"tf": 1}, "mathgenerator.algebra.vector_cross": {"tf": 1}, "mathgenerator.misc.factors": {"tf": 1}, "mathgenerator.statistics.conditional_probability": {"tf": 1}}, "df": 4, "x": {"docs": {"mathgenerator.algebra.linear_equations": {"tf": 1}}, "df": 1, "^": {"docs": {}, "df": 0, "{": {"3": {"docs": {"mathgenerator.calculus.power_rule_differentiation": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}, "7": {"1": {"docs": {"mathgenerator.basic_math.is_composite": {"tf": 1}}, "df": 1}, "2": {"2": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.algebra.complex_quadratic": {"tf": 1}}, "df": 1}, "6": {"4": {"docs": {"mathgenerator.geometry.volume_pyramid": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.misc.factors": {"tf": 1.4142135623730951}, "mathgenerator.misc.geometric_progression": {"tf": 1}}, "df": 2}, "8": {"0": {"1": {"docs": {"mathgenerator.computer_science.bcd_to_decimal": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"mathgenerator.basic_math.percentage": {"tf": 1}, "mathgenerator.misc.binomial_distribution": {"tf": 1}}, "df": 2, "y": {"docs": {"mathgenerator.algebra.linear_equations": {"tf": 1}}, "df": 1}, "^": {"2": {"docs": {"mathgenerator.basic_math.square": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "m": {"docs": {"mathgenerator.geometry.volume_cuboid": {"tf": 1}}, "df": 1}}, "8": {"4": {"docs": {"mathgenerator.geometry.arc_length": {"tf": 1}}, "df": 1}, "6": {"docs": {"mathgenerator.statistics.data_summary": {"tf": 1}}, "df": 1}, "8": {"docs": {"mathgenerator.algebra.vector_dot": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}, "mathgenerator.algebra.midpoint_of_two_points": {"tf": 1}, "mathgenerator.geometry.volume_pyramid": {"tf": 1}, "mathgenerator.misc.lcm": {"tf": 1.4142135623730951}, "mathgenerator.statistics.conditional_probability": {"tf": 1}, "mathgenerator.statistics.permutation": {"tf": 1}}, "df": 6, "^": {"docs": {}, "df": 0, "{": {"1": {"0": {"docs": {}, "df": 0, "^": {"docs": {}, "df": 0, "{": {"8": {"docs": {"mathgenerator.basic_math.power_of_powers": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}, "docs": {}, "df": 0}, "8": {"0": {"docs": {"mathgenerator.basic_math.power_of_powers": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}, "9": {"1": {"0": {"1": {"5": {"docs": {"mathgenerator.computer_science.decimal_to_bcd": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"2": {"6": {"9": {"0": {"0": {"0": {"3": {"1": {"3": {"4": {"4": {"docs": {"mathgenerator.misc.euclidian_norm": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "5": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "6": {"0": {"3": {"docs": {"mathgenerator.geometry.volume_cone_frustum": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "7": {"4": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {"mathgenerator.algebra.distance_two_points": {"tf": 1}, "mathgenerator.algebra.quadratic_equation": {"tf": 1}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}, "mathgenerator.misc.complex_to_polar": {"tf": 1.4142135623730951}, "mathgenerator.statistics.combinations": {"tf": 1}, "mathgenerator.statistics.data_summary": {"tf": 1}, "mathgenerator.statistics.mean_median": {"tf": 1}}, "df": 7, "m": {"docs": {"mathgenerator.geometry.volume_cube": {"tf": 1}}, "df": 1}, "^": {"docs": {}, "df": 0, "{": {"8": {"docs": {"mathgenerator.misc.quotient_of_power_same_power": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}, "/": {"1": {"0": {"docs": {"mathgenerator.misc.quotient_of_power_same_power": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "docs": {"mathgenerator": {"tf": 1.7320508075688772}, "mathgenerator.algebra.complex_quadratic": {"tf": 1.7320508075688772}, "mathgenerator.algebra.invert_matrix": {"tf": 2.23606797749979}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1}, "mathgenerator.algebra.simple_interest": {"tf": 1}, "mathgenerator.algebra.vector_cross": {"tf": 1.4142135623730951}, "mathgenerator.algebra.vector_dot": {"tf": 1}, "mathgenerator.basic_math.fraction_to_decimal": {"tf": 1}, "mathgenerator.calculus.definite_integral": {"tf": 1}, "mathgenerator.computer_science.fibonacci_series": {"tf": 1.4142135623730951}, "mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1.4142135623730951}, "mathgenerator.geometry.area_of_triangle": {"tf": 1}, "mathgenerator.geometry.degree_to_rad": {"tf": 1}, "mathgenerator.misc.common_factors": {"tf": 1}, "mathgenerator.misc.factors": {"tf": 1}, "mathgenerator.misc.product_of_scientific_notations": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_power": {"tf": 1}, "mathgenerator.misc.set_operation": {"tf": 2}, "mathgenerator.misc.signum_function": {"tf": 1}, "mathgenerator.statistics.conditional_probability": {"tf": 1}}, "df": 20, "x": {"docs": {"mathgenerator.algebra.basic_algebra": {"tf": 1}}, "df": 1, "^": {"docs": {}, "df": 0, "{": {"5": {"docs": {"mathgenerator.calculus.power_rule_differentiation": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}, "s": {"docs": {"mathgenerator.computer_science.binary_complement_1s": {"tf": 1}}, "df": 1}}, "2": {"0": {"0": {"0": {"docs": {"mathgenerator.misc.is_leap_year": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0}, "3": {"docs": {"mathgenerator.statistics.confidence_interval": {"tf": 1}}, "df": 1}, "8": {"docs": {"mathgenerator.statistics.confidence_interval": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1.4142135623730951}, "mathgenerator.misc.binomial_distribution": {"tf": 1}}, "df": 2, "y": {"docs": {"mathgenerator.algebra.linear_equations": {"tf": 1}}, "df": 1}, "m": {"docs": {"mathgenerator.geometry.surface_area_cuboid": {"tf": 1}, "mathgenerator.geometry.volume_cone_frustum": {"tf": 1}}, "df": 2}}, "1": {"0": {"docs": {"mathgenerator.statistics.confidence_interval": {"tf": 1}}, "df": 1}, "2": {"docs": {"mathgenerator.statistics.confidence_interval": {"tf": 1}}, "df": 1}, "4": {"docs": {"mathgenerator.statistics.confidence_interval": {"tf": 1}}, "df": 1}, "5": {"6": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "6": {"5": {"docs": {"mathgenerator.algebra.simple_interest": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.geometry.surface_area_cube": {"tf": 1}}, "df": 1, "\\": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"2": {"4": {"docs": {"mathgenerator.basic_math.division": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}}, "9": {"docs": {"mathgenerator.statistics.confidence_interval": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}, "mathgenerator.computer_science.fibonacci_series": {"tf": 1}, "mathgenerator.misc.geometric_mean": {"tf": 1}, "mathgenerator.statistics.mean_median": {"tf": 1}}, "df": 4}, "2": {"1": {"docs": {"mathgenerator.statistics.confidence_interval": {"tf": 1}}, "df": 1}, "3": {"docs": {"mathgenerator.statistics.confidence_interval": {"tf": 1}}, "df": 1}, "9": {"docs": {"mathgenerator.misc.signum_function": {"tf": 1}, "mathgenerator.statistics.confidence_interval": {"tf": 1}}, "df": 2}, "docs": {"mathgenerator.basic_math.absolute_difference": {"tf": 1}, "mathgenerator.basic_math.subtraction": {"tf": 1}, "mathgenerator.geometry.angle_btw_vectors": {"tf": 1}, "mathgenerator.geometry.third_angle_of_triangle": {"tf": 1}, "mathgenerator.misc.factors": {"tf": 1}, "mathgenerator.statistics.mean_median": {"tf": 1}}, "df": 6, "x": {"docs": {}, "df": 0, "^": {"2": {"docs": {}, "df": 0, "+": {"1": {"3": {"7": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "+": {"2": {"5": {"docs": {"mathgenerator.algebra.quadratic_equation": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "docs": {}, "df": 0}}, "+": {"3": {"4": {"docs": {"mathgenerator.basic_math.addition": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "3": {"0": {"0": {"2": {"1": {"1": {"0": {"docs": {"mathgenerator.misc.base_conversion": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "2": {"docs": {"mathgenerator.statistics.confidence_interval": {"tf": 1}}, "df": 1}, "4": {"docs": {"mathgenerator.statistics.confidence_interval": {"tf": 1}}, "df": 1}, "5": {"docs": {"mathgenerator.statistics.confidence_interval": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"0": {"0": {"docs": {"mathgenerator.geometry.surface_area_pyramid": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "1": {"docs": {"mathgenerator.misc.arithmetic_progression_sum": {"tf": 1}}, "df": 1}, "2": {"2": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "3": {"1": {"docs": {"mathgenerator.geometry.volume_cuboid": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.algebra.log": {"tf": 1}, "mathgenerator.misc.euclidian_norm": {"tf": 1}}, "df": 2}, "5": {"docs": {"mathgenerator.statistics.confidence_interval": {"tf": 1}}, "df": 1}, "8": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.algebra.factoring": {"tf": 1}, "mathgenerator.basic_math.factorial": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_term": {"tf": 1}}, "df": 3}, "5": {"2": {"docs": {"mathgenerator.statistics.confidence_interval": {"tf": 1}}, "df": 1}, "4": {"3": {"4": {"docs": {"mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "6": {"docs": {"mathgenerator.statistics.confidence_interval": {"tf": 1}}, "df": 1}, "8": {"docs": {"mathgenerator.statistics.confidence_interval": {"tf": 1}}, "df": 1}, "9": {"6": {"9": {"5": {"4": {"9": {"6": {"9": {"1": {"1": {"1": {"2": {"3": {"3": {"2": {"8": {"docs": {"mathgenerator.computer_science.nth_fibonacci_number": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"mathgenerator.geometry.surface_area_sphere": {"tf": 1}, "mathgenerator.misc.harmonic_mean": {"tf": 1}}, "df": 2, "m": {"docs": {"mathgenerator.geometry.surface_area_pyramid": {"tf": 1}}, "df": 1}}, "6": {"0": {"4": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "1": {"8": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "3": {"2": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.misc.euclidian_norm": {"tf": 1}, "mathgenerator.statistics.confidence_interval": {"tf": 1}}, "df": 2}, "4": {"2": {"docs": {"mathgenerator.geometry.area_of_circle": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "7": {"9": {"docs": {"mathgenerator.algebra.compound_interest": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.statistics.confidence_interval": {"tf": 1}}, "df": 1}, "8": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "9": {"2": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}, "mathgenerator.statistics.data_summary": {"tf": 1}}, "df": 2, "m": {"docs": {"mathgenerator.geometry.surface_area_cone": {"tf": 1}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 1}}, "df": 2}}, "7": {"1": {"3": {"2": {"docs": {"mathgenerator.statistics.combinations": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "8": {"docs": {"mathgenerator.statistics.confidence_interval": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}, "mathgenerator.statistics.data_summary": {"tf": 1}}, "df": 2}, "8": {"0": {"docs": {"mathgenerator.statistics.confidence_interval": {"tf": 1}}, "df": 1}, "1": {"6": {"docs": {"mathgenerator.misc.geometric_progression": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.statistics.confidence_interval": {"tf": 1}}, "df": 1}, "8": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "9": {"docs": {"mathgenerator.basic_math.square": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}, "mathgenerator.algebra.system_of_equations": {"tf": 1}, "mathgenerator.statistics.data_summary": {"tf": 1}}, "df": 3, "x": {"docs": {}, "df": 0, "^": {"2": {"docs": {"mathgenerator.calculus.definite_integral": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0, "{": {"6": {"docs": {"mathgenerator.calculus.power_rule_differentiation": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}, "9": {"0": {"docs": {"mathgenerator.misc.profit_loss_percent": {"tf": 1}}, "df": 1}, "5": {"docs": {"mathgenerator.statistics.confidence_interval": {"tf": 1}}, "df": 1}, "7": {"docs": {"mathgenerator.statistics.confidence_interval": {"tf": 1}}, "df": 1}, "9": {"docs": {"mathgenerator.statistics.confidence_interval": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.geometry.area_of_circle": {"tf": 1}, "mathgenerator.statistics.data_summary": {"tf": 1.4142135623730951}}, "df": 2}, "docs": {"mathgenerator.algebra.distance_two_points": {"tf": 1}, "mathgenerator.algebra.invert_matrix": {"tf": 1}, "mathgenerator.algebra.matrix_multiplication": {"tf": 1}, "mathgenerator.algebra.multiply_complex_numbers": {"tf": 1}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1}, "mathgenerator.algebra.vector_cross": {"tf": 1}, "mathgenerator.algebra.vector_dot": {"tf": 1}, "mathgenerator.basic_math.cube_root": {"tf": 1}, "mathgenerator.basic_math.percentage_difference": {"tf": 1}, "mathgenerator.computer_science.binary_2s_complement": {"tf": 1.4142135623730951}, "mathgenerator.computer_science.fibonacci_series": {"tf": 1}, "mathgenerator.geometry.angle_btw_vectors": {"tf": 1}, "mathgenerator.misc.binomial_distribution": {"tf": 1}, "mathgenerator.misc.common_factors": {"tf": 1}, "mathgenerator.misc.complex_to_polar": {"tf": 1}, "mathgenerator.misc.factors": {"tf": 1}, "mathgenerator.misc.prime_factors": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_base": {"tf": 1}, "mathgenerator.misc.set_operation": {"tf": 2}, "mathgenerator.statistics.data_summary": {"tf": 1}, "mathgenerator.statistics.dice_sum_probability": {"tf": 1}}, "df": 21, "x": {"2": {"docs": {"mathgenerator.algebra.int_matrix_22_determinant": {"tf": 1}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0, "^": {"docs": {}, "df": 0, "{": {"6": {"docs": {"mathgenerator.calculus.power_rule_integration": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}, "}": {"docs": {}, "df": 0, "{": {"6": {"docs": {}, "df": 0, "}": {"docs": {}, "df": 0, "x": {"docs": {"mathgenerator.algebra.intersection_of_two_lines": {"tf": 1}}, "df": 1}}}, "docs": {}, "df": 0}}, "y": {"docs": {"mathgenerator.algebra.system_of_equations": {"tf": 1}}, "df": 1}}, "3": {"0": {"1": {"8": {"6": {"docs": {"mathgenerator.geometry.arc_length": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"mathgenerator.geometry.basic_trigonometry": {"tf": 1}, "mathgenerator.geometry.perimeter_of_polygons": {"tf": 1}, "mathgenerator.geometry.volume_sphere": {"tf": 1}, "mathgenerator.misc.binomial_distribution": {"tf": 1}, "mathgenerator.misc.prime_factors": {"tf": 1}}, "df": 5, "m": {"docs": {"mathgenerator.geometry.surface_area_pyramid": {"tf": 1}, "mathgenerator.geometry.volume_cone_frustum": {"tf": 1}}, "df": 2}}, "1": {"0": {"docs": {"mathgenerator.algebra.linear_equations": {"tf": 1}}, "df": 1}, "8": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "9": {"docs": {"mathgenerator.geometry.perimeter_of_polygons": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.geometry.valid_triangle": {"tf": 1}, "mathgenerator.statistics.confidence_interval": {"tf": 1}}, "df": 2}, "2": {"docs": {"mathgenerator.basic_math.percentage_error": {"tf": 1}, "mathgenerator.basic_math.subtraction": {"tf": 1}}, "df": 2, "x": {"docs": {"mathgenerator.calculus.definite_integral": {"tf": 1}}, "df": 1}, "m": {"docs": {"mathgenerator.geometry.volume_hemisphere": {"tf": 1}}, "df": 1}}, "3": {"6": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.basic_math.percentage_difference": {"tf": 1}, "mathgenerator.calculus.definite_integral": {"tf": 1}, "mathgenerator.computer_science.modulo_division": {"tf": 1}, "mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1}, "mathgenerator.misc.harmonic_mean": {"tf": 1}, "mathgenerator.statistics.confidence_interval": {"tf": 1}, "mathgenerator.statistics.data_summary": {"tf": 1}}, "df": 7}, "4": {"1": {"6": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "6": {"9": {"docs": {"mathgenerator.algebra.compound_interest": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "9": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.basic_math.absolute_difference": {"tf": 1}, "mathgenerator.statistics.data_summary": {"tf": 1}}, "df": 2}, "5": {"1": {"docs": {"mathgenerator.geometry.circumference": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "6": {"3": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "4": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "9": {"8": {"docs": {"mathgenerator.computer_science.decimal_to_octal": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {"mathgenerator.geometry.volume_sphere": {"tf": 1}}, "df": 1}, "7": {"2": {"4": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "6": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "7": {"3": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {"mathgenerator.basic_math.is_prime": {"tf": 1}, "mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 2}, "8": {"4": {"4": {"7": {"7": {"5": {"docs": {"mathgenerator.misc.geometric_progression": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "6": {"4": {"docs": {"mathgenerator.geometry.surface_area_cylinder": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {"mathgenerator.algebra.compound_interest": {"tf": 1}, "mathgenerator.misc.profit_loss_percent": {"tf": 1}, "mathgenerator.statistics.data_summary": {"tf": 1}}, "df": 3}, "9": {"2": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.basic_math.percentage": {"tf": 1}, "mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 2}, "docs": {"mathgenerator.algebra.compound_interest": {"tf": 1}, "mathgenerator.algebra.expanding": {"tf": 1}, "mathgenerator.algebra.intersection_of_two_lines": {"tf": 1}, "mathgenerator.algebra.invert_matrix": {"tf": 1.4142135623730951}, "mathgenerator.algebra.log": {"tf": 1}, "mathgenerator.algebra.simple_interest": {"tf": 1}, "mathgenerator.computer_science.fibonacci_series": {"tf": 1}, "mathgenerator.geometry.area_of_triangle": {"tf": 1}, "mathgenerator.misc.binomial_distribution": {"tf": 1}, "mathgenerator.misc.geometric_mean": {"tf": 1}, "mathgenerator.misc.lcm": {"tf": 1}, "mathgenerator.misc.prime_factors": {"tf": 1}, "mathgenerator.misc.product_of_scientific_notations": {"tf": 1}, "mathgenerator.statistics.mean_median": {"tf": 1}}, "df": 14, "x": {"docs": {"mathgenerator.algebra.expanding": {"tf": 1}}, "df": 1, "^": {"docs": {}, "df": 0, "{": {"1": {"7": {"docs": {"mathgenerator.algebra.combine_like_terms": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0}, "2": {"docs": {"mathgenerator.algebra.combine_like_terms": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0}}}, "\\": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "{": {"7": {"docs": {"mathgenerator.basic_math.simplify_square_root": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}}, "m": {"docs": {"mathgenerator.geometry.volume_cylinder": {"tf": 1}}, "df": 1}}, "4": {"0": {"2": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "8": {"8": {"7": {"8": {"2": {"9": {"2": {"8": {"1": {"5": {"6": {"4": {"docs": {"mathgenerator.misc.euclidian_norm": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"mathgenerator.algebra.int_matrix_22_determinant": {"tf": 1}}, "df": 1, "m": {"docs": {"mathgenerator.geometry.surface_area_pyramid": {"tf": 1}}, "df": 1}}, "1": {"0": {"docs": {"mathgenerator.computer_science.decimal_to_hexadeci": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"3": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "6": {"3": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1.4142135623730951}, "mathgenerator.geometry.angle_btw_vectors": {"tf": 1.4142135623730951}, "mathgenerator.geometry.sector_area": {"tf": 1}, "mathgenerator.geometry.volume_pyramid": {"tf": 1}, "mathgenerator.misc.complex_to_polar": {"tf": 1}}, "df": 5, "^": {"docs": {}, "df": 0, "{": {"docs": {}, "df": 0, "\\": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "{": {"1": {"docs": {}, "df": 0, "}": {"docs": {}, "df": 0, "{": {"2": {"docs": {"mathgenerator.misc.surds_comparison": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}, "docs": {}, "df": 0}}}}}}}}}, "3": {"6": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.computer_science.modulo_division": {"tf": 1}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}, "mathgenerator.geometry.fourth_angle_of_quadrilateral": {"tf": 1}, "mathgenerator.statistics.mean_median": {"tf": 1.4142135623730951}}, "df": 4}, "4": {"0": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}, "mathgenerator.geometry.arc_length": {"tf": 1}, "mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_sum": {"tf": 1}, "mathgenerator.misc.common_factors": {"tf": 1}, "mathgenerator.misc.factors": {"tf": 1}, "mathgenerator.misc.geometric_progression": {"tf": 1}, "mathgenerator.statistics.data_summary": {"tf": 1}, "mathgenerator.statistics.mean_median": {"tf": 1}}, "df": 9, "m": {"docs": {"mathgenerator.geometry.volume_cone": {"tf": 1}}, "df": 1}}, "5": {"0": {"5": {"6": {"docs": {"mathgenerator.misc.geometric_progression": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "2": {"0": {"4": {"docs": {"mathgenerator.misc.base_conversion": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "3": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1}, "mathgenerator.algebra.vector_cross": {"tf": 1}, "mathgenerator.basic_math.percentage": {"tf": 1}, "mathgenerator.geometry.pythagorean_theorem": {"tf": 1}}, "df": 4, "^": {"docs": {}, "df": 0, "{": {"docs": {}, "df": 0, "\\": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "{": {"1": {"docs": {}, "df": 0, "}": {"docs": {}, "df": 0, "{": {"5": {"docs": {"mathgenerator.misc.surds_comparison": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}, "docs": {}, "df": 0}}}}}}}}}, "6": {"docs": {"mathgenerator.misc.celsius_to_fahrenheit": {"tf": 1}, "mathgenerator.statistics.data_summary": {"tf": 1.4142135623730951}}, "df": 2}, "7": {"8": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}, "mathgenerator.statistics.mean_median": {"tf": 1}}, "df": 2}, "8": {"3": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "8": {"0": {"7": {"5": {"6": {"0": {"8": {"docs": {"mathgenerator.basic_math.greatest_common_divisor": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "9": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.percentage_error": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_sum": {"tf": 1}}, "df": 3}, "docs": {"mathgenerator.algebra.factoring": {"tf": 1}, "mathgenerator.algebra.invert_matrix": {"tf": 1.7320508075688772}, "mathgenerator.algebra.system_of_equations": {"tf": 1}, "mathgenerator.algebra.vector_cross": {"tf": 1}, "mathgenerator.basic_math.factorial": {"tf": 1}, "mathgenerator.computer_science.bcd_to_decimal": {"tf": 1}, "mathgenerator.computer_science.decimal_to_binary": {"tf": 1}, "mathgenerator.geometry.perimeter_of_polygons": {"tf": 1}, "mathgenerator.misc.base_conversion": {"tf": 1}, "mathgenerator.misc.common_factors": {"tf": 1}, "mathgenerator.misc.complex_to_polar": {"tf": 1}, "mathgenerator.misc.factors": {"tf": 1}, "mathgenerator.misc.geometric_progression": {"tf": 1}, "mathgenerator.misc.harmonic_mean": {"tf": 1}, "mathgenerator.misc.set_operation": {"tf": 2}, "mathgenerator.statistics.mean_median": {"tf": 1}}, "df": 16, "x": {"docs": {"mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}}, "df": 1, "^": {"docs": {}, "df": 0, "{": {"3": {"docs": {"mathgenerator.calculus.power_rule_integration": {"tf": 1}}, "df": 1}, "4": {"docs": {"mathgenerator.calculus.power_rule_differentiation": {"tf": 1}}, "df": 1}, "7": {"docs": {"mathgenerator.calculus.power_rule_differentiation": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}, "5": {"0": {"6": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.misc.celsius_to_fahrenheit": {"tf": 1}, "mathgenerator.misc.geometric_mean": {"tf": 1}}, "df": 2}, "1": {"3": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "2": {"docs": {"mathgenerator.misc.harmonic_mean": {"tf": 1}}, "df": 1}, "3": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "4": {"docs": {"mathgenerator.algebra.vector_cross": {"tf": 1}, "mathgenerator.basic_math.subtraction": {"tf": 1}, "mathgenerator.geometry.angle_btw_vectors": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_cone_frustum": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_term": {"tf": 1}}, "df": 5}, "5": {"7": {"5": {"docs": {"mathgenerator.geometry.volume_cone": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}, "mathgenerator.basic_math.percentage": {"tf": 1}}, "df": 2}, "6": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}, "mathgenerator.basic_math.addition": {"tf": 1}, "mathgenerator.geometry.angle_btw_vectors": {"tf": 1}, "mathgenerator.geometry.circumference": {"tf": 1}, "mathgenerator.misc.binomial_distribution": {"tf": 1}, "mathgenerator.misc.harmonic_mean": {"tf": 1}, "mathgenerator.misc.minutes_to_hours": {"tf": 1}}, "df": 7}, "7": {"3": {"3": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}, "mathgenerator.misc.harmonic_mean": {"tf": 1}}, "df": 2}, "8": {"8": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "9": {"5": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "9": {"3": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}, "mathgenerator.geometry.angle_btw_vectors": {"tf": 1}, "mathgenerator.misc.product_of_scientific_notations": {"tf": 1}}, "df": 3}, "docs": {"mathgenerator.algebra.basic_algebra": {"tf": 1.4142135623730951}, "mathgenerator.algebra.invert_matrix": {"tf": 1.7320508075688772}, "mathgenerator.algebra.linear_equations": {"tf": 1}, "mathgenerator.algebra.log": {"tf": 1}, "mathgenerator.algebra.midpoint_of_two_points": {"tf": 1.4142135623730951}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.cube_root": {"tf": 1}, "mathgenerator.computer_science.fibonacci_series": {"tf": 1}, "mathgenerator.geometry.angle_btw_vectors": {"tf": 1}, "mathgenerator.misc.prime_factors": {"tf": 1}, "mathgenerator.misc.product_of_scientific_notations": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_base": {"tf": 1}, "mathgenerator.misc.set_operation": {"tf": 2}, "mathgenerator.statistics.dice_sum_probability": {"tf": 1}, "mathgenerator.statistics.mean_median": {"tf": 1}, "mathgenerator.statistics.permutation": {"tf": 1}}, "df": 16, "x": {"docs": {}, "df": 0, "^": {"docs": {}, "df": 0, "{": {"1": {"9": {"docs": {"mathgenerator.algebra.combine_like_terms": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0}, "4": {"docs": {"mathgenerator.calculus.power_rule_differentiation": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}, "y": {"docs": {"mathgenerator.algebra.system_of_equations": {"tf": 1}}, "df": 1}, "^": {"docs": {}, "df": 0, "{": {"6": {"docs": {"mathgenerator.misc.quotient_of_power_same_base": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"mathgenerator.misc.quotient_of_power_same_base": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}, "6": {"0": {"2": {"docs": {"mathgenerator.misc.harmonic_mean": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.basic_math.percentage_error": {"tf": 1}, "mathgenerator.geometry.angle_btw_vectors": {"tf": 1}, "mathgenerator.statistics.mean_median": {"tf": 1}}, "df": 3}, "1": {"2": {"1": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "6": {"docs": {"mathgenerator.geometry.surface_area_cone": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.misc.profit_loss_percent": {"tf": 1}}, "df": 1}, "4": {"8": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}, "mathgenerator.algebra.system_of_equations": {"tf": 1}, "mathgenerator.misc.product_of_scientific_notations": {"tf": 1}}, "df": 3}, "5": {"7": {"5": {"docs": {"mathgenerator.computer_science.decimal_to_bcd": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "9": {"docs": {"mathgenerator.misc.euclidian_norm": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.statistics.data_summary": {"tf": 1}}, "df": 1}, "6": {"6": {"4": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {"mathgenerator.calculus.definite_integral": {"tf": 1}}, "df": 1}, "7": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "8": {"5": {"9": {"docs": {"mathgenerator.geometry.volume_cube": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "6": {"2": {"9": {"docs": {"mathgenerator.geometry.volume_hemisphere": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}, "mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 2}, "9": {"9": {"6": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}, "mathgenerator.geometry.sector_area": {"tf": 1}}, "df": 2}, "docs": {"mathgenerator.algebra.complex_quadratic": {"tf": 1}, "mathgenerator.algebra.distance_two_points": {"tf": 1}, "mathgenerator.algebra.expanding": {"tf": 1}, "mathgenerator.algebra.matrix_multiplication": {"tf": 1}, "mathgenerator.algebra.quadratic_equation": {"tf": 1}, "mathgenerator.calculus.stationary_points": {"tf": 1.4142135623730951}, "mathgenerator.computer_science.binary_to_decimal": {"tf": 1}, "mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1.4142135623730951}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}, "mathgenerator.statistics.combinations": {"tf": 1}}, "df": 10, "x": {"docs": {}, "df": 0, "^": {"docs": {}, "df": 0, "{": {"9": {"docs": {"mathgenerator.algebra.combine_like_terms": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0}}}, "m": {"docs": {"mathgenerator.geometry.surface_area_cone": {"tf": 1}, "mathgenerator.geometry.surface_area_cube": {"tf": 1}}, "df": 2}}, "7": {"0": {"0": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "4": {"docs": {"mathgenerator.misc.geometric_progression": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "1": {"2": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "3": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "2": {"1": {"7": {"docs": {"mathgenerator.algebra.simple_interest": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "2": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}, "mathgenerator.misc.geometric_mean": {"tf": 1}}, "df": 2}, "3": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}, "mathgenerator.statistics.conditional_probability": {"tf": 1}}, "df": 2}, "4": {"docs": {}, "df": 0, "+": {"4": {"6": {"2": {"docs": {}, "df": 0, "j": {"docs": {"mathgenerator.algebra.multiply_complex_numbers": {"tf": 1}}, "df": 1}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "5": {"1": {"docs": {"mathgenerator.misc.profit_loss_percent": {"tf": 1}}, "df": 1}, "3": {"4": {"8": {"0": {"9": {"6": {"docs": {"mathgenerator.basic_math.greatest_common_divisor": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "8": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}, "mathgenerator.geometry.complementary_and_supplementary_angle": {"tf": 1}}, "df": 2}, "6": {"0": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "1": {"docs": {"mathgenerator.misc.euclidian_norm": {"tf": 1}}, "df": 1}, "4": {"8": {"docs": {"mathgenerator.algebra.int_matrix_22_determinant": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "7": {"1": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.geometry.fourth_angle_of_quadrilateral": {"tf": 1}}, "df": 1}, "8": {"docs": {"mathgenerator.geometry.fourth_angle_of_quadrilateral": {"tf": 1}, "mathgenerator.geometry.perimeter_of_polygons": {"tf": 1}}, "df": 2}, "9": {"6": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "9": {"5": {"0": {"0": {"5": {"3": {"8": {"7": {"4": {"4": {"2": {"4": {"docs": {"mathgenerator.misc.euclidian_norm": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}, "mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1}, "mathgenerator.geometry.volume_pyramid": {"tf": 1}, "mathgenerator.statistics.data_summary": {"tf": 1}}, "df": 4, "}": {"docs": {}, "df": 0, "{": {"5": {"docs": {"mathgenerator.algebra.intersection_of_two_lines": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"mathgenerator.misc.geometric_progression": {"tf": 1.4142135623730951}}, "df": 1}}}, "8": {"0": {"4": {"docs": {"mathgenerator.geometry.surface_area_sphere": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_term": {"tf": 1}}, "df": 2}, "9": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "1": {"5": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.basic_math.percentage_error": {"tf": 1}, "mathgenerator.geometry.angle_btw_vectors": {"tf": 1}, "mathgenerator.statistics.mean_median": {"tf": 1}}, "df": 3}, "2": {"4": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"mathgenerator.algebra.complex_quadratic": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "3": {"6": {"docs": {"mathgenerator.misc.minutes_to_hours": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}, "mathgenerator.geometry.sector_area": {"tf": 1}}, "df": 2, "\\": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"8": {"0": {"docs": {"mathgenerator.basic_math.fraction_to_decimal": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}}, "4": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1.4142135623730951}, "mathgenerator.misc.quotient_of_power_same_power": {"tf": 1}}, "df": 2}, "5": {"8": {"6": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "h": {"docs": {"mathgenerator.computer_science.nth_fibonacci_number": {"tf": 1}}, "df": 1}}}, "6": {"1": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.geometry.circumference": {"tf": 1}, "mathgenerator.misc.geometric_mean": {"tf": 1}, "mathgenerator.misc.product_of_scientific_notations": {"tf": 1}}, "df": 3}, "7": {"docs": {"mathgenerator.misc.geometric_mean": {"tf": 1}, "mathgenerator.statistics.mean_median": {"tf": 1}}, "df": 2}, "8": {"8": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.algebra.int_matrix_22_determinant": {"tf": 1}, "mathgenerator.geometry.angle_btw_vectors": {"tf": 1}, "mathgenerator.misc.factors": {"tf": 1}}, "df": 3}, "9": {"3": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.algebra.complex_quadratic": {"tf": 1.7320508075688772}, "mathgenerator.algebra.intersection_of_two_lines": {"tf": 1}, "mathgenerator.algebra.midpoint_of_two_points": {"tf": 1}, "mathgenerator.algebra.system_of_equations": {"tf": 1}, "mathgenerator.algebra.vector_dot": {"tf": 1}, "mathgenerator.basic_math.exponentiation": {"tf": 1}, "mathgenerator.basic_math.greatest_common_divisor": {"tf": 1}, "mathgenerator.basic_math.square_root": {"tf": 1}, "mathgenerator.calculus.stationary_points": {"tf": 1}, "mathgenerator.computer_science.fibonacci_series": {"tf": 1}, "mathgenerator.geometry.angle_btw_vectors": {"tf": 1}, "mathgenerator.geometry.angle_regular_polygon": {"tf": 1}, "mathgenerator.geometry.area_of_triangle": {"tf": 1.4142135623730951}, "mathgenerator.geometry.sum_of_polygon_angles": {"tf": 1}, "mathgenerator.misc.celsius_to_fahrenheit": {"tf": 1}, "mathgenerator.misc.factors": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_base": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_power": {"tf": 1}, "mathgenerator.misc.set_operation": {"tf": 2}, "mathgenerator.statistics.data_summary": {"tf": 1}}, "df": 20, "x": {"docs": {"mathgenerator.algebra.complex_quadratic": {"tf": 1}}, "df": 1}, "]": {"docs": {}, "df": 0, "\\": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.algebra.vector_dot": {"tf": 1}}, "df": 1}}}}}}, "m": {"docs": {"mathgenerator.geometry.surface_area_cuboid": {"tf": 1}, "mathgenerator.geometry.surface_area_sphere": {"tf": 1}, "mathgenerator.geometry.volume_cone_frustum": {"tf": 1}}, "df": 3}}, "9": {"0": {"docs": {"mathgenerator.basic_math.multiplication": {"tf": 1}}, "df": 1}, "1": {"docs": {"mathgenerator.algebra.int_matrix_22_determinant": {"tf": 1}, "mathgenerator.calculus.definite_integral": {"tf": 1}, "mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 3}, "2": {"2": {"5": {"0": {"7": {"1": {"5": {"4": {"0": {"4": {"4": {"2": {"docs": {"mathgenerator.misc.euclidian_norm": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "9": {"7": {"2": {"docs": {"mathgenerator.misc.arithmetic_progression_sum": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1}, "mathgenerator.misc.decimal_to_roman_numerals": {"tf": 1}, "mathgenerator.statistics.mean_median": {"tf": 1}}, "df": 3}, "3": {"4": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "6": {"docs": {"mathgenerator.geometry.surface_area_cuboid": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}, "mathgenerator.misc.complex_to_polar": {"tf": 1}}, "df": 2}, "4": {"2": {"docs": {"mathgenerator.geometry.volume_cylinder": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "5": {"4": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "6": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "7": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1.4142135623730951}, "mathgenerator.geometry.degree_to_rad": {"tf": 1}, "mathgenerator.misc.euclidian_norm": {"tf": 1}}, "df": 3}, "8": {"docs": {"mathgenerator.statistics.conditional_probability": {"tf": 1}}, "df": 1}, "9": {"7": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.geometry.area_of_triangle": {"tf": 1}, "mathgenerator.statistics.conditional_probability": {"tf": 1.7320508075688772}, "mathgenerator.statistics.confidence_interval": {"tf": 1}}, "df": 3}, "docs": {"mathgenerator.algebra.compound_interest": {"tf": 1}, "mathgenerator.algebra.int_matrix_22_determinant": {"tf": 1}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1}, "mathgenerator.algebra.vector_dot": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.division": {"tf": 1}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}, "mathgenerator.geometry.pythagorean_theorem": {"tf": 1}, "mathgenerator.statistics.data_summary": {"tf": 1}}, "df": 8, "x": {"docs": {"mathgenerator.algebra.system_of_equations": {"tf": 1}}, "df": 1, "^": {"docs": {}, "df": 0, "{": {"6": {"docs": {"mathgenerator.calculus.power_rule_integration": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}, "^": {"docs": {}, "df": 0, "{": {"5": {"docs": {"mathgenerator.basic_math.exponentiation": {"tf": 1}}, "df": 1}, "8": {"docs": {"mathgenerator.misc.quotient_of_power_same_power": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}, "docs": {"mathgenerator": {"tf": 14.106735979665885}, "mathgenerator.get_gen_list": {"tf": 1.7320508075688772}, "mathgenerator.gen_by_id": {"tf": 1.7320508075688772}, "mathgenerator.getGenList": {"tf": 1.7320508075688772}, "mathgenerator.genById": {"tf": 1.7320508075688772}, "mathgenerator.algebra": {"tf": 1.7320508075688772}, "mathgenerator.algebra.basic_algebra": {"tf": 5.5677643628300215}, "mathgenerator.algebra.combine_like_terms": {"tf": 6}, "mathgenerator.algebra.complex_quadratic": {"tf": 5.916079783099616}, "mathgenerator.algebra.compound_interest": {"tf": 5.656854249492381}, "mathgenerator.algebra.distance_two_points": {"tf": 5.830951894845301}, "mathgenerator.algebra.expanding": {"tf": 5.656854249492381}, "mathgenerator.algebra.factoring": {"tf": 5.916079783099616}, "mathgenerator.algebra.int_matrix_22_determinant": {"tf": 5.656854249492381}, "mathgenerator.algebra.intersection_of_two_lines": {"tf": 5.744562646538029}, "mathgenerator.algebra.invert_matrix": {"tf": 5.830951894845301}, "mathgenerator.algebra.linear_equations": {"tf": 5.744562646538029}, "mathgenerator.algebra.log": {"tf": 5.5677643628300215}, "mathgenerator.algebra.matrix_multiplication": {"tf": 6.855654600401044}, "mathgenerator.algebra.midpoint_of_two_points": {"tf": 6}, "mathgenerator.algebra.multiply_complex_numbers": {"tf": 5.916079783099616}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 5.830951894845301}, "mathgenerator.algebra.quadratic_equation": {"tf": 5.5677643628300215}, "mathgenerator.algebra.simple_interest": {"tf": 5.656854249492381}, "mathgenerator.algebra.system_of_equations": {"tf": 5.830951894845301}, "mathgenerator.algebra.vector_cross": {"tf": 5.744562646538029}, "mathgenerator.algebra.vector_dot": {"tf": 5.656854249492381}, "mathgenerator.basic_math": {"tf": 1.7320508075688772}, "mathgenerator.basic_math.absolute_difference": {"tf": 6.082762530298219}, "mathgenerator.basic_math.addition": {"tf": 5.5677643628300215}, "mathgenerator.basic_math.compare_fractions": {"tf": 5.656854249492381}, "mathgenerator.basic_math.cube_root": {"tf": 5.5677643628300215}, "mathgenerator.basic_math.divide_fractions": {"tf": 5.5677643628300215}, "mathgenerator.basic_math.division": {"tf": 5.5677643628300215}, "mathgenerator.basic_math.exponentiation": {"tf": 5.5677643628300215}, "mathgenerator.basic_math.factorial": {"tf": 5.5677643628300215}, "mathgenerator.basic_math.fraction_multiplication": {"tf": 5.5677643628300215}, "mathgenerator.basic_math.fraction_to_decimal": {"tf": 5.5677643628300215}, "mathgenerator.basic_math.greatest_common_divisor": {"tf": 5.744562646538029}, "mathgenerator.basic_math.is_composite": {"tf": 5.477225575051661}, "mathgenerator.basic_math.is_prime": {"tf": 5.477225575051661}, "mathgenerator.basic_math.multiplication": {"tf": 5.5677643628300215}, "mathgenerator.basic_math.percentage": {"tf": 5.477225575051661}, "mathgenerator.basic_math.percentage_difference": {"tf": 5.477225575051661}, "mathgenerator.basic_math.percentage_error": {"tf": 5.5677643628300215}, "mathgenerator.basic_math.power_of_powers": {"tf": 5.477225575051661}, "mathgenerator.basic_math.square": {"tf": 5.5677643628300215}, "mathgenerator.basic_math.square_root": {"tf": 5.5677643628300215}, "mathgenerator.basic_math.simplify_square_root": {"tf": 5.477225575051661}, "mathgenerator.basic_math.subtraction": {"tf": 5.5677643628300215}, "mathgenerator.calculus": {"tf": 1.7320508075688772}, "mathgenerator.calculus.definite_integral": {"tf": 5.744562646538029}, "mathgenerator.calculus.power_rule_differentiation": {"tf": 5.830951894845301}, "mathgenerator.calculus.power_rule_integration": {"tf": 5.916079783099616}, "mathgenerator.calculus.stationary_points": {"tf": 5.916079783099616}, "mathgenerator.calculus.trig_differentiation": {"tf": 5.656854249492381}, "mathgenerator.computer_science": {"tf": 1.7320508075688772}, "mathgenerator.computer_science.bcd_to_decimal": {"tf": 5.5677643628300215}, "mathgenerator.computer_science.binary_2s_complement": {"tf": 5.5677643628300215}, "mathgenerator.computer_science.binary_complement_1s": {"tf": 5.5677643628300215}, "mathgenerator.computer_science.binary_to_decimal": {"tf": 5.477225575051661}, "mathgenerator.computer_science.binary_to_hex": {"tf": 5.477225575051661}, "mathgenerator.computer_science.decimal_to_bcd": {"tf": 5.5677643628300215}, "mathgenerator.computer_science.decimal_to_binary": {"tf": 5.5677643628300215}, "mathgenerator.computer_science.decimal_to_hexadeci": {"tf": 5.5677643628300215}, "mathgenerator.computer_science.decimal_to_octal": {"tf": 5.477225575051661}, "mathgenerator.computer_science.fibonacci_series": {"tf": 5.5677643628300215}, "mathgenerator.computer_science.modulo_division": {"tf": 5.656854249492381}, "mathgenerator.computer_science.nth_fibonacci_number": {"tf": 5.477225575051661}, "mathgenerator.geometry": {"tf": 1.7320508075688772}, "mathgenerator.geometry.angle_btw_vectors": {"tf": 5.477225575051661}, "mathgenerator.geometry.angle_regular_polygon": {"tf": 5.477225575051661}, "mathgenerator.geometry.arc_length": {"tf": 5.656854249492381}, "mathgenerator.geometry.area_of_circle": {"tf": 5.5677643628300215}, "mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 5.830951894845301}, "mathgenerator.geometry.area_of_triangle": {"tf": 5.5677643628300215}, "mathgenerator.geometry.basic_trigonometry": {"tf": 5.5677643628300215}, "mathgenerator.geometry.circumference": {"tf": 5.5677643628300215}, "mathgenerator.geometry.complementary_and_supplementary_angle": {"tf": 5.5677643628300215}, "mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 5.477225575051661}, "mathgenerator.geometry.degree_to_rad": {"tf": 5.477225575051661}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 5.830951894845301}, "mathgenerator.geometry.fourth_angle_of_quadrilateral": {"tf": 5.5677643628300215}, "mathgenerator.geometry.perimeter_of_polygons": {"tf": 5.477225575051661}, "mathgenerator.geometry.pythagorean_theorem": {"tf": 5.477225575051661}, "mathgenerator.geometry.radian_to_deg": {"tf": 1.4142135623730951}, "mathgenerator.geometry.sector_area": {"tf": 5.477225575051661}, "mathgenerator.geometry.sum_of_polygon_angles": {"tf": 5.477225575051661}, "mathgenerator.geometry.surface_area_cone": {"tf": 5.656854249492381}, "mathgenerator.geometry.surface_area_cube": {"tf": 5.5677643628300215}, "mathgenerator.geometry.surface_area_cuboid": {"tf": 5.477225575051661}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 5.656854249492381}, "mathgenerator.geometry.surface_area_pyramid": {"tf": 5.744562646538029}, "mathgenerator.geometry.surface_area_sphere": {"tf": 5.5677643628300215}, "mathgenerator.geometry.third_angle_of_triangle": {"tf": 5.5677643628300215}, "mathgenerator.geometry.valid_triangle": {"tf": 5.477225575051661}, "mathgenerator.geometry.volume_cone": {"tf": 5.656854249492381}, "mathgenerator.geometry.volume_cube": {"tf": 3.3166247903554}, "mathgenerator.geometry.volume_cuboid": {"tf": 5.477225575051661}, "mathgenerator.geometry.volume_cylinder": {"tf": 5.656854249492381}, "mathgenerator.geometry.volume_cone_frustum": {"tf": 5.5677643628300215}, "mathgenerator.geometry.volume_hemisphere": {"tf": 5.5677643628300215}, "mathgenerator.geometry.volume_pyramid": {"tf": 5.744562646538029}, "mathgenerator.geometry.volume_sphere": {"tf": 5.5677643628300215}, "mathgenerator.misc": {"tf": 1.7320508075688772}, "mathgenerator.misc.arithmetic_progression_sum": {"tf": 5.5677643628300215}, "mathgenerator.misc.arithmetic_progression_term": {"tf": 5.656854249492381}, "mathgenerator.misc.base_conversion": {"tf": 5.477225575051661}, "mathgenerator.misc.binomial_distribution": {"tf": 5.477225575051661}, "mathgenerator.misc.celsius_to_fahrenheit": {"tf": 5.656854249492381}, "mathgenerator.misc.common_factors": {"tf": 5.5677643628300215}, "mathgenerator.misc.complex_to_polar": {"tf": 5.744562646538029}, "mathgenerator.misc.decimal_to_roman_numerals": {"tf": 5.477225575051661}, "mathgenerator.misc.euclidian_norm": {"tf": 5.477225575051661}, "mathgenerator.misc.factors": {"tf": 5.5677643628300215}, "mathgenerator.misc.geometric_mean": {"tf": 5.5677643628300215}, "mathgenerator.misc.geometric_progression": {"tf": 5.477225575051661}, "mathgenerator.misc.harmonic_mean": {"tf": 5.5677643628300215}, "mathgenerator.misc.is_leap_year": {"tf": 5.477225575051661}, "mathgenerator.misc.lcm": {"tf": 5.656854249492381}, "mathgenerator.misc.minutes_to_hours": {"tf": 5.477225575051661}, "mathgenerator.misc.prime_factors": {"tf": 5.477225575051661}, "mathgenerator.misc.product_of_scientific_notations": {"tf": 5.5677643628300215}, "mathgenerator.misc.profit_loss_percent": {"tf": 5.477225575051661}, "mathgenerator.misc.quotient_of_power_same_base": {"tf": 5.477225575051661}, "mathgenerator.misc.quotient_of_power_same_power": {"tf": 5.477225575051661}, "mathgenerator.misc.set_operation": {"tf": 5.5677643628300215}, "mathgenerator.misc.signum_function": {"tf": 5.744562646538029}, "mathgenerator.misc.surds_comparison": {"tf": 5.656854249492381}, "mathgenerator.statistics": {"tf": 1.7320508075688772}, "mathgenerator.statistics.combinations": {"tf": 5.5677643628300215}, "mathgenerator.statistics.conditional_probability": {"tf": 5.477225575051661}, "mathgenerator.statistics.confidence_interval": {"tf": 5.656854249492381}, "mathgenerator.statistics.data_summary": {"tf": 5.477225575051661}, "mathgenerator.statistics.dice_sum_probability": {"tf": 5.656854249492381}, "mathgenerator.statistics.mean_median": {"tf": 5.477225575051661}, "mathgenerator.statistics.permutation": {"tf": 5.477225575051661}}, "df": 137, "m": {"docs": {"mathgenerator.geometry.volume_pyramid": {"tf": 1.7320508075688772}, "mathgenerator.geometry.volume_sphere": {"tf": 1}}, "df": 2, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"mathgenerator": {"tf": 1.4142135623730951}}, "df": 1, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator": {"tf": 1.4142135623730951}}, "df": 1, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator": {"tf": 3}}, "df": 1}}}}}}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {"mathgenerator.algebra.int_matrix_22_determinant": {"tf": 1}, "mathgenerator.algebra.invert_matrix": {"tf": 1.4142135623730951}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1}}, "df": 3}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}}}}}}, "y": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.misc.binomial_distribution": {"tf": 1}}, "df": 1, "r": {"docs": {"mathgenerator.misc.binomial_distribution": {"tf": 1}}, "df": 1}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.misc.geometric_mean": {"tf": 1.4142135623730951}, "mathgenerator.misc.harmonic_mean": {"tf": 1.4142135623730951}, "mathgenerator.statistics.data_summary": {"tf": 1.7320508075688772}, "mathgenerator.statistics.mean_median": {"tf": 1.7320508075688772}}, "df": 4, "s": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator.misc.binomial_distribution": {"tf": 1}}, "df": 1}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.statistics.mean_median": {"tf": 1.7320508075688772}}, "df": 1}}}}}, "d": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}, "g": {"docs": {"mathgenerator": {"tf": 1.4142135623730951}}, "df": 1}, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1.4142135623730951}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1}}, "df": 2}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.algebra.multiply_complex_numbers": {"tf": 1}, "mathgenerator.basic_math.fraction_multiplication": {"tf": 1}, "mathgenerator.basic_math.multiplication": {"tf": 1}}, "df": 3}}}}}}}, "e": {"docs": {"mathgenerator.misc.lcm": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.algebra.midpoint_of_two_points": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.misc.minutes_to_hours": {"tf": 2.23606797749979}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {"mathgenerator.computer_science.modulo_division": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.misc.binomial_distribution": {"tf": 1}}, "df": 1}}}, "^": {"2": {"docs": {"mathgenerator.geometry.surface_area_cone": {"tf": 1}, "mathgenerator.geometry.surface_area_cube": {"tf": 1}, "mathgenerator.geometry.surface_area_cuboid": {"tf": 1}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.surface_area_pyramid": {"tf": 1}, "mathgenerator.geometry.surface_area_sphere": {"tf": 1}}, "df": 6}, "3": {"docs": {"mathgenerator.geometry.volume_cone": {"tf": 1}, "mathgenerator.geometry.volume_cube": {"tf": 1}, "mathgenerator.geometry.volume_cuboid": {"tf": 1}, "mathgenerator.geometry.volume_cylinder": {"tf": 1}, "mathgenerator.geometry.volume_cone_frustum": {"tf": 1}, "mathgenerator.geometry.volume_hemisphere": {"tf": 1}, "mathgenerator.geometry.volume_pyramid": {"tf": 1}, "mathgenerator.geometry.volume_sphere": {"tf": 1}}, "df": 8}, "docs": {}, "df": 0}}, "a": {"docs": {"mathgenerator": {"tf": 3}, "mathgenerator.algebra.compound_interest": {"tf": 1.4142135623730951}, "mathgenerator.algebra.factoring": {"tf": 1}, "mathgenerator.algebra.simple_interest": {"tf": 1.4142135623730951}, "mathgenerator.algebra.system_of_equations": {"tf": 1}, "mathgenerator.basic_math.percentage": {"tf": 1}, "mathgenerator.geometry.angle_regular_polygon": {"tf": 1.4142135623730951}, "mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1}, "mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1.4142135623730951}, "mathgenerator.geometry.perimeter_of_polygons": {"tf": 1}, "mathgenerator.geometry.pythagorean_theorem": {"tf": 1}, "mathgenerator.geometry.sector_area": {"tf": 1.4142135623730951}, "mathgenerator.geometry.sum_of_polygon_angles": {"tf": 1}, "mathgenerator.geometry.surface_area_cone": {"tf": 1}, "mathgenerator.geometry.surface_area_cube": {"tf": 1}, "mathgenerator.geometry.surface_area_cuboid": {"tf": 1}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.surface_area_pyramid": {"tf": 1}, "mathgenerator.geometry.surface_area_sphere": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_cone": {"tf": 1}, "mathgenerator.geometry.volume_cube": {"tf": 1.7320508075688772}, "mathgenerator.geometry.volume_cuboid": {"tf": 1}, "mathgenerator.geometry.volume_cylinder": {"tf": 1}, "mathgenerator.geometry.volume_cone_frustum": {"tf": 1}, "mathgenerator.geometry.volume_hemisphere": {"tf": 1}, "mathgenerator.geometry.volume_pyramid": {"tf": 1}, "mathgenerator.geometry.volume_sphere": {"tf": 1}, "mathgenerator.misc.binomial_distribution": {"tf": 1.4142135623730951}, "mathgenerator.misc.euclidian_norm": {"tf": 1}, "mathgenerator.misc.factors": {"tf": 1}, "mathgenerator.misc.geometric_progression": {"tf": 1.4142135623730951}, "mathgenerator.misc.is_leap_year": {"tf": 1.4142135623730951}, "mathgenerator.misc.set_operation": {"tf": 2.23606797749979}, "mathgenerator.statistics.combinations": {"tf": 1}, "mathgenerator.statistics.conditional_probability": {"tf": 1}, "mathgenerator.statistics.dice_sum_probability": {"tf": 1.4142135623730951}, "mathgenerator.statistics.permutation": {"tf": 1}}, "df": 37, "n": {"docs": {"mathgenerator": {"tf": 2.449489742783178}}, "df": 1, "d": {"docs": {"mathgenerator": {"tf": 2.23606797749979}, "mathgenerator.algebra.compound_interest": {"tf": 1}, "mathgenerator.algebra.distance_two_points": {"tf": 1}, "mathgenerator.algebra.intersection_of_two_lines": {"tf": 1}, "mathgenerator.algebra.linear_equations": {"tf": 1.4142135623730951}, "mathgenerator.algebra.matrix_multiplication": {"tf": 1}, "mathgenerator.algebra.midpoint_of_two_points": {"tf": 1}, "mathgenerator.algebra.simple_interest": {"tf": 1}, "mathgenerator.algebra.system_of_equations": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.compare_fractions": {"tf": 1}, "mathgenerator.basic_math.percentage_difference": {"tf": 1}, "mathgenerator.basic_math.percentage_error": {"tf": 1}, "mathgenerator.geometry.angle_btw_vectors": {"tf": 1}, "mathgenerator.geometry.arc_length": {"tf": 1}, "mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1.4142135623730951}, "mathgenerator.geometry.complementary_and_supplementary_angle": {"tf": 1}, "mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}, "mathgenerator.geometry.pythagorean_theorem": {"tf": 1}, "mathgenerator.geometry.sector_area": {"tf": 1}, "mathgenerator.geometry.surface_area_cone": {"tf": 1}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.surface_area_pyramid": {"tf": 1}, "mathgenerator.geometry.third_angle_of_triangle": {"tf": 1}, "mathgenerator.geometry.valid_triangle": {"tf": 1}, "mathgenerator.geometry.volume_cone": {"tf": 1}, "mathgenerator.geometry.volume_cylinder": {"tf": 1}, "mathgenerator.geometry.volume_cone_frustum": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_pyramid": {"tf": 1}, "mathgenerator.misc.common_factors": {"tf": 1}, "mathgenerator.misc.lcm": {"tf": 1}, "mathgenerator.misc.minutes_to_hours": {"tf": 1.4142135623730951}, "mathgenerator.misc.product_of_scientific_notations": {"tf": 1}, "mathgenerator.misc.profit_loss_percent": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_base": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_power": {"tf": 1}, "mathgenerator.misc.set_operation": {"tf": 1}, "mathgenerator.statistics.data_summary": {"tf": 1.4142135623730951}, "mathgenerator.statistics.mean_median": {"tf": 1.7320508075688772}}, "df": 39}, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1.4142135623730951}, "mathgenerator.geometry.angle_regular_polygon": {"tf": 1.4142135623730951}, "mathgenerator.geometry.arc_length": {"tf": 2}, "mathgenerator.geometry.complementary_and_supplementary_angle": {"tf": 1.4142135623730951}, "mathgenerator.geometry.degree_to_rad": {"tf": 1}, "mathgenerator.geometry.fourth_angle_of_quadrilateral": {"tf": 1.4142135623730951}, "mathgenerator.geometry.sector_area": {"tf": 1}, "mathgenerator.geometry.third_angle_of_triangle": {"tf": 1.4142135623730951}}, "df": 8, "s": {"docs": {"mathgenerator.geometry.fourth_angle_of_quadrilateral": {"tf": 1}, "mathgenerator.geometry.sum_of_polygon_angles": {"tf": 1.4142135623730951}, "mathgenerator.geometry.third_angle_of_triangle": {"tf": 1}}, "df": 3}}}}}, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}, "p": {"docs": {"mathgenerator.misc.arithmetic_progression_sum": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_term": {"tf": 1}}, "df": 2, "p": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"mathgenerator.statistics.dice_sum_probability": {"tf": 1}}, "df": 1}}}}}}}}, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.basic_math.absolute_difference": {"tf": 1}}, "df": 1}}}}}}}, "d": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator": {"tf": 2.23606797749979}, "mathgenerator.basic_math.addition": {"tf": 1}}, "df": 2}}}}}}}, "s": {"docs": {"mathgenerator": {"tf": 1.7320508075688772}}, "df": 1, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator": {"tf": 1.4142135623730951}, "mathgenerator.algebra.quadratic_equation": {"tf": 1}, "mathgenerator.misc.binomial_distribution": {"tf": 1.4142135623730951}, "mathgenerator.statistics.dice_sum_probability": {"tf": 1}}, "df": 4, "a": {"docs": {"mathgenerator.geometry.area_of_circle": {"tf": 1.4142135623730951}, "mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1.4142135623730951}, "mathgenerator.geometry.area_of_triangle": {"tf": 1.4142135623730951}, "mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1.4142135623730951}, "mathgenerator.geometry.sector_area": {"tf": 1.4142135623730951}, "mathgenerator.geometry.surface_area_cone": {"tf": 1.4142135623730951}, "mathgenerator.geometry.surface_area_cube": {"tf": 1.4142135623730951}, "mathgenerator.geometry.surface_area_cuboid": {"tf": 1.4142135623730951}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 1.4142135623730951}, "mathgenerator.geometry.surface_area_pyramid": {"tf": 1.4142135623730951}, "mathgenerator.geometry.surface_area_sphere": {"tf": 1.4142135623730951}}, "df": 11}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}, "c": {"docs": {"mathgenerator.geometry.arc_length": {"tf": 1.7320508075688772}}, "df": 1}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"mathgenerator.misc.arithmetic_progression_sum": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_term": {"tf": 1}, "mathgenerator.statistics.mean_median": {"tf": 1.4142135623730951}}, "df": 3}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"mathgenerator.statistics.mean_median": {"tf": 1}}, "df": 1}}}}}}}}}, "t": {"docs": {"mathgenerator": {"tf": 1.4142135623730951}, "mathgenerator.statistics.combinations": {"tf": 1}, "mathgenerator.statistics.dice_sum_probability": {"tf": 1}, "mathgenerator.statistics.permutation": {"tf": 1}}, "df": 4}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.misc.binomial_distribution": {"tf": 1}}, "df": 1}}}}}}, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}, "l": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {"mathgenerator.algebra.basic_algebra": {"tf": 1}}, "df": 1}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.algebra.compound_interest": {"tf": 1}, "mathgenerator.algebra.simple_interest": {"tf": 1}}, "df": 2}}}}, "p": {"docs": {"mathgenerator.algebra.int_matrix_22_determinant": {"tf": 1.4142135623730951}, "mathgenerator.algebra.invert_matrix": {"tf": 3.4641016151377544}, "mathgenerator.algebra.matrix_multiplication": {"tf": 6.48074069840786}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 2}, "mathgenerator.misc.minutes_to_hours": {"tf": 1}}, "df": 5}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {"mathgenerator": {"tf": 3.605551275463989}, "mathgenerator.algebra.basic_algebra": {"tf": 1}, "mathgenerator.algebra.combine_like_terms": {"tf": 1}, "mathgenerator.algebra.complex_quadratic": {"tf": 1}, "mathgenerator.algebra.compound_interest": {"tf": 1}, "mathgenerator.algebra.distance_two_points": {"tf": 1}, "mathgenerator.algebra.expanding": {"tf": 1}, "mathgenerator.algebra.factoring": {"tf": 1}, "mathgenerator.algebra.int_matrix_22_determinant": {"tf": 1}, "mathgenerator.algebra.intersection_of_two_lines": {"tf": 1}, "mathgenerator.algebra.invert_matrix": {"tf": 1}, "mathgenerator.algebra.linear_equations": {"tf": 1}, "mathgenerator.algebra.log": {"tf": 1}, "mathgenerator.algebra.matrix_multiplication": {"tf": 1}, "mathgenerator.algebra.midpoint_of_two_points": {"tf": 1}, "mathgenerator.algebra.multiply_complex_numbers": {"tf": 1}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1}, "mathgenerator.algebra.quadratic_equation": {"tf": 1}, "mathgenerator.algebra.simple_interest": {"tf": 1}, "mathgenerator.algebra.system_of_equations": {"tf": 1}, "mathgenerator.algebra.vector_cross": {"tf": 1}, "mathgenerator.algebra.vector_dot": {"tf": 1}, "mathgenerator.basic_math.absolute_difference": {"tf": 1}, "mathgenerator.basic_math.addition": {"tf": 1}, "mathgenerator.basic_math.compare_fractions": {"tf": 1}, "mathgenerator.basic_math.cube_root": {"tf": 1}, "mathgenerator.basic_math.divide_fractions": {"tf": 1}, "mathgenerator.basic_math.division": {"tf": 1}, "mathgenerator.basic_math.exponentiation": {"tf": 1}, "mathgenerator.basic_math.factorial": {"tf": 1}, "mathgenerator.basic_math.fraction_multiplication": {"tf": 1}, "mathgenerator.basic_math.fraction_to_decimal": {"tf": 1}, "mathgenerator.basic_math.greatest_common_divisor": {"tf": 1}, "mathgenerator.basic_math.is_composite": {"tf": 1}, "mathgenerator.basic_math.is_prime": {"tf": 1}, "mathgenerator.basic_math.multiplication": {"tf": 1}, "mathgenerator.basic_math.percentage": {"tf": 1}, "mathgenerator.basic_math.percentage_difference": {"tf": 1}, "mathgenerator.basic_math.percentage_error": {"tf": 1}, "mathgenerator.basic_math.power_of_powers": {"tf": 1}, "mathgenerator.basic_math.square": {"tf": 1}, "mathgenerator.basic_math.square_root": {"tf": 1}, "mathgenerator.basic_math.simplify_square_root": {"tf": 1}, "mathgenerator.basic_math.subtraction": {"tf": 1}, "mathgenerator.calculus.definite_integral": {"tf": 1}, "mathgenerator.calculus.power_rule_differentiation": {"tf": 1}, "mathgenerator.calculus.power_rule_integration": {"tf": 1}, "mathgenerator.calculus.stationary_points": {"tf": 1}, "mathgenerator.calculus.trig_differentiation": {"tf": 1}, "mathgenerator.computer_science.bcd_to_decimal": {"tf": 1}, "mathgenerator.computer_science.binary_2s_complement": {"tf": 1}, "mathgenerator.computer_science.binary_complement_1s": {"tf": 1}, "mathgenerator.computer_science.binary_to_decimal": {"tf": 1}, "mathgenerator.computer_science.binary_to_hex": {"tf": 1}, "mathgenerator.computer_science.decimal_to_bcd": {"tf": 1}, "mathgenerator.computer_science.decimal_to_binary": {"tf": 1}, "mathgenerator.computer_science.decimal_to_hexadeci": {"tf": 1}, "mathgenerator.computer_science.decimal_to_octal": {"tf": 1}, "mathgenerator.computer_science.fibonacci_series": {"tf": 1}, "mathgenerator.computer_science.modulo_division": {"tf": 1}, "mathgenerator.computer_science.nth_fibonacci_number": {"tf": 1}, "mathgenerator.geometry.angle_btw_vectors": {"tf": 1}, "mathgenerator.geometry.angle_regular_polygon": {"tf": 1}, "mathgenerator.geometry.arc_length": {"tf": 1}, "mathgenerator.geometry.area_of_circle": {"tf": 1}, "mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1}, "mathgenerator.geometry.area_of_triangle": {"tf": 1}, "mathgenerator.geometry.basic_trigonometry": {"tf": 1}, "mathgenerator.geometry.circumference": {"tf": 1}, "mathgenerator.geometry.complementary_and_supplementary_angle": {"tf": 1}, "mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.degree_to_rad": {"tf": 1}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}, "mathgenerator.geometry.fourth_angle_of_quadrilateral": {"tf": 1}, "mathgenerator.geometry.perimeter_of_polygons": {"tf": 1}, "mathgenerator.geometry.pythagorean_theorem": {"tf": 1}, "mathgenerator.geometry.sector_area": {"tf": 1}, "mathgenerator.geometry.sum_of_polygon_angles": {"tf": 1}, "mathgenerator.geometry.surface_area_cone": {"tf": 1}, "mathgenerator.geometry.surface_area_cube": {"tf": 1}, "mathgenerator.geometry.surface_area_cuboid": {"tf": 1}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.surface_area_pyramid": {"tf": 1}, "mathgenerator.geometry.surface_area_sphere": {"tf": 1}, "mathgenerator.geometry.third_angle_of_triangle": {"tf": 1}, "mathgenerator.geometry.valid_triangle": {"tf": 1}, "mathgenerator.geometry.volume_cone": {"tf": 1}, "mathgenerator.geometry.volume_cube": {"tf": 1}, "mathgenerator.geometry.volume_cuboid": {"tf": 1}, "mathgenerator.geometry.volume_cylinder": {"tf": 1}, "mathgenerator.geometry.volume_cone_frustum": {"tf": 1}, "mathgenerator.geometry.volume_hemisphere": {"tf": 1}, "mathgenerator.geometry.volume_pyramid": {"tf": 1}, "mathgenerator.geometry.volume_sphere": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_sum": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_term": {"tf": 1}, "mathgenerator.misc.base_conversion": {"tf": 1}, "mathgenerator.misc.binomial_distribution": {"tf": 1}, "mathgenerator.misc.celsius_to_fahrenheit": {"tf": 1}, "mathgenerator.misc.common_factors": {"tf": 1}, "mathgenerator.misc.complex_to_polar": {"tf": 1}, "mathgenerator.misc.decimal_to_roman_numerals": {"tf": 1}, "mathgenerator.misc.euclidian_norm": {"tf": 1}, "mathgenerator.misc.factors": {"tf": 1}, "mathgenerator.misc.geometric_mean": {"tf": 1}, "mathgenerator.misc.geometric_progression": {"tf": 1}, "mathgenerator.misc.harmonic_mean": {"tf": 1}, "mathgenerator.misc.is_leap_year": {"tf": 1}, "mathgenerator.misc.lcm": {"tf": 1}, "mathgenerator.misc.minutes_to_hours": {"tf": 1}, "mathgenerator.misc.prime_factors": {"tf": 1}, "mathgenerator.misc.product_of_scientific_notations": {"tf": 1}, "mathgenerator.misc.profit_loss_percent": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_base": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_power": {"tf": 1}, "mathgenerator.misc.set_operation": {"tf": 1}, "mathgenerator.misc.signum_function": {"tf": 1}, "mathgenerator.misc.surds_comparison": {"tf": 1}, "mathgenerator.statistics.combinations": {"tf": 1}, "mathgenerator.statistics.conditional_probability": {"tf": 1}, "mathgenerator.statistics.confidence_interval": {"tf": 1}, "mathgenerator.statistics.data_summary": {"tf": 1}, "mathgenerator.statistics.dice_sum_probability": {"tf": 1}, "mathgenerator.statistics.mean_median": {"tf": 1}, "mathgenerator.statistics.permutation": {"tf": 1}}, "df": 125, "s": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}, "/": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.misc.binomial_distribution": {"tf": 1}, "mathgenerator.statistics.conditional_probability": {"tf": 1.4142135623730951}, "mathgenerator.statistics.dice_sum_probability": {"tf": 1.4142135623730951}}, "df": 3}}}}}}}}, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.algebra.vector_cross": {"tf": 1}, "mathgenerator.algebra.vector_dot": {"tf": 1}, "mathgenerator.misc.product_of_scientific_notations": {"tf": 1.4142135623730951}}, "df": 3}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.misc.arithmetic_progression_sum": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_term": {"tf": 1}, "mathgenerator.misc.geometric_progression": {"tf": 1}}, "df": 3}}}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.misc.profit_loss_percent": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.algebra.compound_interest": {"tf": 1}, "mathgenerator.algebra.simple_interest": {"tf": 1}}, "df": 2}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.basic_math.is_prime": {"tf": 1.4142135623730951}, "mathgenerator.misc.prime_factors": {"tf": 1.4142135623730951}}, "df": 2}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "p": {"docs": {"mathgenerator": {"tf": 1.7320508075688772}}, "df": 1}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.misc.binomial_distribution": {"tf": 2}}, "df": 1}}}}}, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.statistics.combinations": {"tf": 1}, "mathgenerator.statistics.permutation": {"tf": 1}}, "df": 2}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator": {"tf": 1.7320508075688772}}, "df": 1, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1}}, "df": 1}}}}}}, "d": {"docs": {}, "df": 0, "f": {"docs": {"mathgenerator": {"tf": 1.7320508075688772}}, "df": 1}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.algebra.compound_interest": {"tf": 1}, "mathgenerator.algebra.simple_interest": {"tf": 1}}, "df": 2}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.geometry.perimeter_of_polygons": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.misc.profit_loss_percent": {"tf": 1.4142135623730951}}, "df": 1, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.basic_math.percentage": {"tf": 1}, "mathgenerator.basic_math.percentage_difference": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.percentage_error": {"tf": 1.4142135623730951}}, "df": 3}}}}}}}, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.statistics.permutation": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.algebra.intersection_of_two_lines": {"tf": 1}, "mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1}}, "df": 2, "s": {"docs": {"mathgenerator.algebra.distance_two_points": {"tf": 1}, "mathgenerator.algebra.midpoint_of_two_points": {"tf": 1}, "mathgenerator.calculus.stationary_points": {"tf": 1}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1.4142135623730951}}, "df": 4}}}}, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.basic_math.power_of_powers": {"tf": 1}, "mathgenerator.calculus.power_rule_differentiation": {"tf": 1}, "mathgenerator.calculus.power_rule_integration": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_power": {"tf": 1}}, "df": 4, "s": {"docs": {"mathgenerator.basic_math.power_of_powers": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_base": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_power": {"tf": 1}}, "df": 3}}}}, "l": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.geometry.angle_regular_polygon": {"tf": 1.4142135623730951}, "mathgenerator.geometry.perimeter_of_polygons": {"tf": 1}, "mathgenerator.geometry.sum_of_polygon_angles": {"tf": 1.4142135623730951}}, "df": 3, "s": {"docs": {"mathgenerator.geometry.perimeter_of_polygons": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.misc.complex_to_polar": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.statistics.conditional_probability": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.statistics.conditional_probability": {"tf": 1}}, "df": 1}}}}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.basic_math.cube_root": {"tf": 1}}, "df": 1}}}}}, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.geometry.pythagorean_theorem": {"tf": 1}}, "df": 1}}}}}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.geometry.surface_area_pyramid": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_pyramid": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator": {"tf": 2.8284271247461903}}, "df": 1, "s": {"docs": {"mathgenerator": {"tf": 1.4142135623730951}}, "df": 1}}}, "e": {"docs": {"mathgenerator": {"tf": 1.7320508075688772}}, "df": 1, "d": {"docs": {"mathgenerator": {"tf": 1.7320508075688772}}, "df": 1}, "s": {"docs": {"mathgenerator": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "b": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator": {"tf": 2}}, "df": 1}}}}}, "t": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"mathgenerator.statistics.dice_sum_probability": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"mathgenerator.misc.geometric_mean": {"tf": 1.4142135623730951}, "mathgenerator.misc.geometric_progression": {"tf": 1}}, "df": 2}}}}}}}}, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator": {"tf": 1}, "mathgenerator.algebra.complex_quadratic": {"tf": 1}, "mathgenerator.algebra.factoring": {"tf": 1}, "mathgenerator.algebra.linear_equations": {"tf": 1}, "mathgenerator.algebra.system_of_equations": {"tf": 1}, "mathgenerator.geometry.arc_length": {"tf": 1}, "mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1}, "mathgenerator.geometry.pythagorean_theorem": {"tf": 1}, "mathgenerator.misc.geometric_progression": {"tf": 1}, "mathgenerator.misc.set_operation": {"tf": 1}, "mathgenerator.statistics.mean_median": {"tf": 1}}, "df": 11}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}, "t": {"docs": {"mathgenerator": {"tf": 1}, "mathgenerator.basic_math.compare_fractions": {"tf": 1}, "mathgenerator.misc.surds_comparison": {"tf": 1}}, "df": 3}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.basic_math.greatest_common_divisor": {"tf": 1}}, "df": 1}}}}}}}, "c": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.basic_math.greatest_common_divisor": {"tf": 1.4142135623730951}}, "df": 1}}, "p": {"docs": {"mathgenerator.misc.geometric_progression": {"tf": 1}}, "df": 1}, "u": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.statistics.conditional_probability": {"tf": 1}}, "df": 1}}}, "c": {"docs": {"mathgenerator.algebra.factoring": {"tf": 1}, "mathgenerator.calculus.power_rule_integration": {"tf": 1}}, "df": 2, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1, "d": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}, "s": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.algebra.vector_cross": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}, "e": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.misc.binomial_distribution": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {"mathgenerator.geometry.surface_area_cone": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_cone": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_cone_frustum": {"tf": 1}}, "df": 3}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.misc.base_conversion": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {"mathgenerator.misc.base_conversion": {"tf": 1}, "mathgenerator.misc.celsius_to_fahrenheit": {"tf": 1}, "mathgenerator.misc.minutes_to_hours": {"tf": 1.4142135623730951}}, "df": 3}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator.statistics.conditional_probability": {"tf": 1}}, "df": 1}}}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.statistics.confidence_interval": {"tf": 1.7320508075688772}}, "df": 1}}}}}}}}, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.algebra.combine_like_terms": {"tf": 1}}, "df": 1}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.statistics.combinations": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"mathgenerator.algebra.complex_quadratic": {"tf": 1}, "mathgenerator.algebra.multiply_complex_numbers": {"tf": 1}, "mathgenerator.misc.complex_to_polar": {"tf": 1}}, "df": 3}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.computer_science.binary_2s_complement": {"tf": 1.4142135623730951}, "mathgenerator.computer_science.binary_complement_1s": {"tf": 1}}, "df": 2, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.geometry.complementary_and_supplementary_angle": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.algebra.compound_interest": {"tf": 1.4142135623730951}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.basic_math.is_composite": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.basic_math.compare_fractions": {"tf": 1}}, "df": 1}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.basic_math.compare_fractions": {"tf": 1}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {"mathgenerator.misc.surds_comparison": {"tf": 1}}, "df": 1}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.basic_math.greatest_common_divisor": {"tf": 1}, "mathgenerator.misc.common_factors": {"tf": 1.4142135623730951}, "mathgenerator.misc.geometric_progression": {"tf": 1.4142135623730951}, "mathgenerator.misc.lcm": {"tf": 1}}, "df": 4}}}}, "t": {"docs": {"mathgenerator.calculus.trig_differentiation": {"tf": 1}}, "df": 1}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.computer_science.bcd_to_decimal": {"tf": 1.4142135623730951}, "mathgenerator.computer_science.decimal_to_bcd": {"tf": 1}}, "df": 2}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator": {"tf": 2}}, "df": 1}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1.4142135623730951}}, "df": 1}}}}, "b": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.basic_math.cube_root": {"tf": 1.4142135623730951}, "mathgenerator.geometry.surface_area_cube": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_cube": {"tf": 1.4142135623730951}}, "df": 3}, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.geometry.surface_area_cuboid": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_cuboid": {"tf": 1.4142135623730951}}, "df": 2}}}}}, "s": {"docs": {}, "df": 0, "c": {"docs": {"mathgenerator.calculus.trig_differentiation": {"tf": 1.4142135623730951}}, "df": 1}}, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.calculus.trig_differentiation": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.area_of_circle": {"tf": 1.4142135623730951}, "mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1.7320508075688772}, "mathgenerator.geometry.circumference": {"tf": 1.4142135623730951}}, "df": 3}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.circumference": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1.4142135623730951}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.misc.celsius_to_fahrenheit": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.statistics.dice_sum_probability": {"tf": 1}}, "df": 1}}}}}}, "y": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1.4142135623730951}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_cylinder": {"tf": 1.4142135623730951}}, "df": 3}}}}}}}, "p": {"docs": {"mathgenerator.misc.profit_loss_percent": {"tf": 1}}, "df": 1}}, "f": {"docs": {"mathgenerator.calculus.stationary_points": {"tf": 1}}, "df": 1, "o": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator": {"tf": 2.23606797749979}, "mathgenerator.algebra.compound_interest": {"tf": 1.4142135623730951}, "mathgenerator.algebra.linear_equations": {"tf": 1}, "mathgenerator.algebra.simple_interest": {"tf": 1.4142135623730951}, "mathgenerator.algebra.system_of_equations": {"tf": 1}, "mathgenerator.misc.geometric_progression": {"tf": 1}, "mathgenerator.statistics.conditional_probability": {"tf": 1}, "mathgenerator.statistics.confidence_interval": {"tf": 1.4142135623730951}, "mathgenerator.statistics.data_summary": {"tf": 1}}, "df": 9, "m": {"docs": {"mathgenerator.algebra.factoring": {"tf": 1}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}, "mathgenerator.misc.complex_to_polar": {"tf": 1}}, "df": 3, "a": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator": {"tf": 2.449489742783178}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"mathgenerator.geometry.fourth_angle_of_quadrilateral": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.misc.signum_function": {"tf": 1}}, "df": 1, "s": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"mathgenerator": {"tf": 1.7320508075688772}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}, "mathgenerator.misc.base_conversion": {"tf": 1}, "mathgenerator.statistics.combinations": {"tf": 1}, "mathgenerator.statistics.permutation": {"tf": 1}}, "df": 5}}, "a": {"docs": {}, "df": 0, "c": {"docs": {"mathgenerator.algebra.complex_quadratic": {"tf": 1.4142135623730951}, "mathgenerator.algebra.intersection_of_two_lines": {"tf": 1.4142135623730951}}, "df": 2, "{": {"1": {"docs": {}, "df": 0, "}": {"docs": {}, "df": 0, "{": {"2": {"docs": {"mathgenerator.basic_math.compare_fractions": {"tf": 1}, "mathgenerator.geometry.basic_trigonometry": {"tf": 1}}, "df": 2}, "3": {"docs": {"mathgenerator.calculus.stationary_points": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0}}}, "2": {"docs": {}, "df": 0, "}": {"docs": {}, "df": 0, "{": {"6": {"docs": {}, "df": 0, "}": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "^": {"docs": {}, "df": 0, "{": {"7": {"docs": {"mathgenerator.calculus.power_rule_integration": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}, "docs": {}, "df": 0}}}, "3": {"docs": {}, "df": 0, "}": {"docs": {}, "df": 0, "{": {"1": {"0": {"docs": {}, "df": 0, "}": {"docs": {}, "df": 0, "\\": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "\\": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "{": {"6": {"docs": {}, "df": 0, "}": {"docs": {}, "df": 0, "{": {"7": {"docs": {"mathgenerator.basic_math.fraction_multiplication": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}, "docs": {}, "df": 0}}}}}}}}}}}}}, "docs": {}, "df": 0}, "4": {"docs": {"mathgenerator.basic_math.compare_fractions": {"tf": 1}}, "df": 1}, "6": {"docs": {}, "df": 0, "}": {"docs": {}, "df": 0, "x": {"docs": {"mathgenerator.algebra.intersection_of_two_lines": {"tf": 1}}, "df": 1}}}, "docs": {}, "df": 0}}}, "4": {"docs": {}, "df": 0, "}": {"docs": {}, "df": 0, "{": {"3": {"docs": {}, "df": 0, "}": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "^": {"docs": {}, "df": 0, "{": {"4": {"docs": {"mathgenerator.calculus.power_rule_integration": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}, "docs": {}, "df": 0}}}, "6": {"6": {"docs": {}, "df": 0, "}": {"docs": {}, "df": 0, "{": {"5": {"docs": {"mathgenerator.algebra.intersection_of_two_lines": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}, "docs": {}, "df": 0}, "7": {"docs": {}, "df": 0, "}": {"docs": {}, "df": 0, "{": {"3": {"6": {"docs": {"mathgenerator.basic_math.divide_fractions": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "9": {"docs": {}, "df": 0, "}": {"docs": {}, "df": 0, "\\": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "\\": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "{": {"4": {"docs": {}, "df": 0, "}": {"docs": {}, "df": 0, "{": {"1": {"docs": {"mathgenerator.basic_math.divide_fractions": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}, "docs": {}, "df": 0}}}}}}}}}}}}, "docs": {}, "df": 0}}}, "9": {"docs": {}, "df": 0, "}": {"docs": {}, "df": 0, "{": {"3": {"5": {"docs": {"mathgenerator.basic_math.fraction_multiplication": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "6": {"docs": {}, "df": 0, "}": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "^": {"docs": {}, "df": 0, "{": {"7": {"docs": {"mathgenerator.calculus.power_rule_integration": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}, "docs": {}, "df": 0}}}, "docs": {}, "df": 0, "\\": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "{": {"2": {"docs": {}, "df": 0, "}": {"docs": {}, "df": 0, "}": {"docs": {}, "df": 0, "{": {"6": {"docs": {"mathgenerator.calculus.stationary_points": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0}}}}, "docs": {}, "df": 0}}}}}}, "d": {"docs": {}, "df": 0, "}": {"docs": {}, "df": 0, "{": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "x": {"docs": {"mathgenerator.calculus.trig_differentiation": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.basic_math.fraction_multiplication": {"tf": 1}, "mathgenerator.basic_math.fraction_to_decimal": {"tf": 1}}, "df": 2, "s": {"docs": {"mathgenerator.basic_math.compare_fractions": {"tf": 1}, "mathgenerator.basic_math.divide_fractions": {"tf": 1}}, "df": 2}}}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"mathgenerator.geometry.volume_cone_frustum": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.algebra.complex_quadratic": {"tf": 1}, "mathgenerator.algebra.distance_two_points": {"tf": 1}, "mathgenerator.algebra.intersection_of_two_lines": {"tf": 1}, "mathgenerator.basic_math.percentage_error": {"tf": 1}, "mathgenerator.geometry.angle_regular_polygon": {"tf": 1}, "mathgenerator.geometry.arc_length": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_sum": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_term": {"tf": 1}, "mathgenerator.misc.geometric_progression": {"tf": 1}, "mathgenerator.misc.prime_factors": {"tf": 1}, "mathgenerator.misc.set_operation": {"tf": 1}, "mathgenerator.statistics.combinations": {"tf": 1}, "mathgenerator.statistics.data_summary": {"tf": 1}, "mathgenerator.statistics.mean_median": {"tf": 1}}, "df": 14, "s": {"docs": {"mathgenerator.misc.binomial_distribution": {"tf": 1}}, "df": 1}}}, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {"mathgenerator.computer_science.fibonacci_series": {"tf": 1.4142135623730951}, "mathgenerator.computer_science.nth_fibonacci_number": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.computer_science.fibonacci_series": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_sum": {"tf": 1}}, "df": 2}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator.misc.surds_comparison": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.algebra.factoring": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.algebra.expanding": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"mathgenerator.algebra.factoring": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator.basic_math.factorial": {"tf": 1}}, "df": 1}}}, "s": {"docs": {"mathgenerator.misc.common_factors": {"tf": 1.4142135623730951}, "mathgenerator.misc.factors": {"tf": 1.4142135623730951}, "mathgenerator.misc.prime_factors": {"tf": 1.4142135623730951}}, "df": 3}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.statistics.dice_sum_probability": {"tf": 1}}, "df": 1}}}, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.misc.celsius_to_fahrenheit": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}, "t": {"docs": {"mathgenerator": {"tf": 1.4142135623730951}}, "df": 1, "h": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator": {"tf": 4}, "mathgenerator.algebra.complex_quadratic": {"tf": 1}, "mathgenerator.algebra.distance_two_points": {"tf": 1}, "mathgenerator.algebra.factoring": {"tf": 1}, "mathgenerator.algebra.intersection_of_two_lines": {"tf": 1.4142135623730951}, "mathgenerator.algebra.linear_equations": {"tf": 1}, "mathgenerator.algebra.midpoint_of_two_points": {"tf": 1}, "mathgenerator.algebra.quadratic_equation": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.compare_fractions": {"tf": 1}, "mathgenerator.basic_math.cube_root": {"tf": 1}, "mathgenerator.basic_math.percentage_difference": {"tf": 1}, "mathgenerator.basic_math.percentage_error": {"tf": 1}, "mathgenerator.calculus.definite_integral": {"tf": 1.4142135623730951}, "mathgenerator.computer_science.decimal_to_octal": {"tf": 1}, "mathgenerator.computer_science.fibonacci_series": {"tf": 1.4142135623730951}, "mathgenerator.computer_science.nth_fibonacci_number": {"tf": 1}, "mathgenerator.geometry.angle_btw_vectors": {"tf": 1}, "mathgenerator.geometry.angle_regular_polygon": {"tf": 1}, "mathgenerator.geometry.arc_length": {"tf": 1.7320508075688772}, "mathgenerator.geometry.complementary_and_supplementary_angle": {"tf": 1}, "mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1.4142135623730951}, "mathgenerator.geometry.perimeter_of_polygons": {"tf": 1}, "mathgenerator.geometry.pythagorean_theorem": {"tf": 1.4142135623730951}, "mathgenerator.geometry.sector_area": {"tf": 1}, "mathgenerator.geometry.sum_of_polygon_angles": {"tf": 1}, "mathgenerator.geometry.volume_cone_frustum": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_sum": {"tf": 1.4142135623730951}, "mathgenerator.misc.arithmetic_progression_term": {"tf": 1}, "mathgenerator.misc.binomial_distribution": {"tf": 1.4142135623730951}, "mathgenerator.misc.decimal_to_roman_numerals": {"tf": 1}, "mathgenerator.misc.euclidian_norm": {"tf": 1}, "mathgenerator.misc.geometric_progression": {"tf": 1.7320508075688772}, "mathgenerator.misc.quotient_of_power_same_base": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_power": {"tf": 1}, "mathgenerator.misc.set_operation": {"tf": 1.4142135623730951}, "mathgenerator.misc.surds_comparison": {"tf": 1}, "mathgenerator.statistics.combinations": {"tf": 1}, "mathgenerator.statistics.conditional_probability": {"tf": 1.4142135623730951}, "mathgenerator.statistics.confidence_interval": {"tf": 1}, "mathgenerator.statistics.data_summary": {"tf": 1.7320508075688772}, "mathgenerator.statistics.dice_sum_probability": {"tf": 1.4142135623730951}, "mathgenerator.statistics.mean_median": {"tf": 2}}, "df": 43, "i": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {"mathgenerator.geometry.pythagorean_theorem": {"tf": 1}}, "df": 1}}}}, "y": {"docs": {"mathgenerator.misc.binomial_distribution": {"tf": 1.4142135623730951}}, "df": 1}}, "a": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator": {"tf": 1.4142135623730951}, "mathgenerator.misc.binomial_distribution": {"tf": 1.4142135623730951}, "mathgenerator.statistics.conditional_probability": {"tf": 1.4142135623730951}}, "df": 3}, "n": {"docs": {"mathgenerator.misc.binomial_distribution": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator": {"tf": 1.4142135623730951}, "mathgenerator.statistics.conditional_probability": {"tf": 1}, "mathgenerator.statistics.mean_median": {"tf": 1}}, "df": 3}, "r": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.geometry.third_angle_of_triangle": {"tf": 1.4142135623730951}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {"mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "m": {"docs": {"mathgenerator.misc.arithmetic_progression_term": {"tf": 1.4142135623730951}, "mathgenerator.misc.geometric_progression": {"tf": 2}}, "df": 2, "s": {"docs": {"mathgenerator.algebra.combine_like_terms": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_sum": {"tf": 1}}, "df": 2}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.statistics.conditional_probability": {"tf": 1.4142135623730951}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.statistics.conditional_probability": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {"mathgenerator": {"tf": 4}, "mathgenerator.algebra.int_matrix_22_determinant": {"tf": 1}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1}, "mathgenerator.basic_math.cube_root": {"tf": 1}, "mathgenerator.basic_math.fraction_to_decimal": {"tf": 1}, "mathgenerator.calculus.definite_integral": {"tf": 1}, "mathgenerator.computer_science.bcd_to_decimal": {"tf": 1}, "mathgenerator.computer_science.binary_to_decimal": {"tf": 1}, "mathgenerator.computer_science.binary_to_hex": {"tf": 1}, "mathgenerator.computer_science.decimal_to_bcd": {"tf": 1}, "mathgenerator.computer_science.decimal_to_binary": {"tf": 1}, "mathgenerator.computer_science.decimal_to_hexadeci": {"tf": 1}, "mathgenerator.computer_science.decimal_to_octal": {"tf": 1}, "mathgenerator.geometry.degree_to_rad": {"tf": 1}, "mathgenerator.geometry.radian_to_deg": {"tf": 1}, "mathgenerator.misc.base_conversion": {"tf": 1}, "mathgenerator.misc.celsius_to_fahrenheit": {"tf": 1.4142135623730951}, "mathgenerator.misc.complex_to_polar": {"tf": 1}, "mathgenerator.misc.decimal_to_roman_numerals": {"tf": 1}, "mathgenerator.misc.minutes_to_hours": {"tf": 1.4142135623730951}, "mathgenerator.statistics.conditional_probability": {"tf": 1}}, "df": 21}, "r": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"mathgenerator.calculus.trig_differentiation": {"tf": 1}, "mathgenerator.geometry.basic_trigonometry": {"tf": 1}}, "df": 2}}}}}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.area_of_triangle": {"tf": 1.4142135623730951}, "mathgenerator.geometry.pythagorean_theorem": {"tf": 1}, "mathgenerator.geometry.third_angle_of_triangle": {"tf": 1.4142135623730951}, "mathgenerator.geometry.valid_triangle": {"tf": 1}}, "df": 4}}, "e": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator.geometry.valid_triangle": {"tf": 1}}, "df": 1}}}}}}, "u": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.statistics.conditional_probability": {"tf": 1.4142135623730951}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.algebra.compound_interest": {"tf": 1}, "mathgenerator.algebra.simple_interest": {"tf": 1}, "mathgenerator.statistics.combinations": {"tf": 1}, "mathgenerator.statistics.dice_sum_probability": {"tf": 1}, "mathgenerator.statistics.permutation": {"tf": 1}}, "df": 5, "s": {"docs": {"mathgenerator.algebra.vector_cross": {"tf": 1}, "mathgenerator.misc.product_of_scientific_notations": {"tf": 1.7320508075688772}}, "df": 2}}}}, "w": {"docs": {}, "df": 0, "o": {"docs": {"mathgenerator.algebra.intersection_of_two_lines": {"tf": 1.4142135623730951}, "mathgenerator.algebra.matrix_multiplication": {"tf": 1}, "mathgenerator.algebra.midpoint_of_two_points": {"tf": 1}, "mathgenerator.basic_math.absolute_difference": {"tf": 1}, "mathgenerator.basic_math.addition": {"tf": 1}, "mathgenerator.basic_math.percentage_difference": {"tf": 1}, "mathgenerator.basic_math.subtraction": {"tf": 1}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}, "mathgenerator.geometry.pythagorean_theorem": {"tf": 1}, "mathgenerator.misc.set_operation": {"tf": 1.4142135623730951}}, "df": 10}}}, "o": {"docs": {}, "df": 0, "f": {"docs": {"mathgenerator": {"tf": 2.449489742783178}, "mathgenerator.algebra.complex_quadratic": {"tf": 1}, "mathgenerator.algebra.compound_interest": {"tf": 1.7320508075688772}, "mathgenerator.algebra.intersection_of_two_lines": {"tf": 1.7320508075688772}, "mathgenerator.algebra.invert_matrix": {"tf": 1}, "mathgenerator.algebra.midpoint_of_two_points": {"tf": 1.4142135623730951}, "mathgenerator.algebra.multiply_complex_numbers": {"tf": 1}, "mathgenerator.algebra.quadratic_equation": {"tf": 1}, "mathgenerator.algebra.simple_interest": {"tf": 1.7320508075688772}, "mathgenerator.algebra.system_of_equations": {"tf": 1}, "mathgenerator.algebra.vector_cross": {"tf": 1}, "mathgenerator.algebra.vector_dot": {"tf": 1}, "mathgenerator.basic_math.addition": {"tf": 1}, "mathgenerator.basic_math.cube_root": {"tf": 1}, "mathgenerator.basic_math.greatest_common_divisor": {"tf": 1}, "mathgenerator.basic_math.percentage": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.power_of_powers": {"tf": 1}, "mathgenerator.basic_math.subtraction": {"tf": 1}, "mathgenerator.calculus.definite_integral": {"tf": 1.4142135623730951}, "mathgenerator.computer_science.bcd_to_decimal": {"tf": 1}, "mathgenerator.computer_science.binary_2s_complement": {"tf": 1}, "mathgenerator.computer_science.decimal_to_bcd": {"tf": 1}, "mathgenerator.computer_science.decimal_to_binary": {"tf": 1}, "mathgenerator.computer_science.decimal_to_hexadeci": {"tf": 1}, "mathgenerator.computer_science.fibonacci_series": {"tf": 1}, "mathgenerator.geometry.angle_regular_polygon": {"tf": 1.4142135623730951}, "mathgenerator.geometry.arc_length": {"tf": 1.7320508075688772}, "mathgenerator.geometry.area_of_circle": {"tf": 1.4142135623730951}, "mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1.4142135623730951}, "mathgenerator.geometry.area_of_triangle": {"tf": 1.4142135623730951}, "mathgenerator.geometry.circumference": {"tf": 1.4142135623730951}, "mathgenerator.geometry.complementary_and_supplementary_angle": {"tf": 1}, "mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1.7320508075688772}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1.4142135623730951}, "mathgenerator.geometry.fourth_angle_of_quadrilateral": {"tf": 1.4142135623730951}, "mathgenerator.geometry.perimeter_of_polygons": {"tf": 1.7320508075688772}, "mathgenerator.geometry.pythagorean_theorem": {"tf": 1}, "mathgenerator.geometry.sector_area": {"tf": 1.4142135623730951}, "mathgenerator.geometry.sum_of_polygon_angles": {"tf": 2}, "mathgenerator.geometry.surface_area_cone": {"tf": 1.4142135623730951}, "mathgenerator.geometry.surface_area_cube": {"tf": 1.4142135623730951}, "mathgenerator.geometry.surface_area_cuboid": {"tf": 1.7320508075688772}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 1.4142135623730951}, "mathgenerator.geometry.surface_area_pyramid": {"tf": 1.4142135623730951}, "mathgenerator.geometry.surface_area_sphere": {"tf": 1.4142135623730951}, "mathgenerator.geometry.third_angle_of_triangle": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_cone": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_cube": {"tf": 1.7320508075688772}, "mathgenerator.geometry.volume_cuboid": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_cylinder": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_cone_frustum": {"tf": 1.7320508075688772}, "mathgenerator.geometry.volume_hemisphere": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_pyramid": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_sphere": {"tf": 1.4142135623730951}, "mathgenerator.misc.arithmetic_progression_sum": {"tf": 1.4142135623730951}, "mathgenerator.misc.arithmetic_progression_term": {"tf": 1}, "mathgenerator.misc.binomial_distribution": {"tf": 1.7320508075688772}, "mathgenerator.misc.common_factors": {"tf": 1}, "mathgenerator.misc.euclidian_norm": {"tf": 1.4142135623730951}, "mathgenerator.misc.factors": {"tf": 1.4142135623730951}, "mathgenerator.misc.geometric_mean": {"tf": 1.4142135623730951}, "mathgenerator.misc.geometric_progression": {"tf": 1.4142135623730951}, "mathgenerator.misc.harmonic_mean": {"tf": 1.4142135623730951}, "mathgenerator.misc.lcm": {"tf": 1}, "mathgenerator.misc.prime_factors": {"tf": 1}, "mathgenerator.misc.product_of_scientific_notations": {"tf": 1.4142135623730951}, "mathgenerator.misc.quotient_of_power_same_base": {"tf": 1.4142135623730951}, "mathgenerator.misc.quotient_of_power_same_power": {"tf": 1.4142135623730951}, "mathgenerator.misc.set_operation": {"tf": 1}, "mathgenerator.misc.signum_function": {"tf": 1}, "mathgenerator.statistics.combinations": {"tf": 1.4142135623730951}, "mathgenerator.statistics.conditional_probability": {"tf": 1}, "mathgenerator.statistics.dice_sum_probability": {"tf": 2}, "mathgenerator.statistics.mean_median": {"tf": 2}, "mathgenerator.statistics.permutation": {"tf": 1}}, "df": 75}, "u": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.basic_math.percentage_error": {"tf": 1}}, "df": 1}}}}}}, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.statistics.combinations": {"tf": 1.4142135623730951}, "mathgenerator.statistics.permutation": {"tf": 1}}, "df": 2}}}}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator.computer_science.decimal_to_octal": {"tf": 1.4142135623730951}}, "df": 1}}}}, "n": {"docs": {"mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1}, "mathgenerator.misc.binomial_distribution": {"tf": 1}, "mathgenerator.statistics.dice_sum_probability": {"tf": 1}}, "df": 3, "l": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.statistics.conditional_probability": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.geometry.pythagorean_theorem": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {"mathgenerator.misc.euclidian_norm": {"tf": 1.4142135623730951}, "mathgenerator.misc.is_leap_year": {"tf": 1}, "mathgenerator.misc.profit_loss_percent": {"tf": 1}}, "df": 3}}, "s": {"docs": {"mathgenerator.algebra.factoring": {"tf": 1}, "mathgenerator.computer_science.binary_2s_complement": {"tf": 1.4142135623730951}, "mathgenerator.statistics.confidence_interval": {"tf": 1}}, "df": 3, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.calculus.stationary_points": {"tf": 1}}, "df": 1}}}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.statistics.data_summary": {"tf": 1.7320508075688772}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}, "b": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.basic_math.subtraction": {"tf": 1}}, "df": 1}}}}}}}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.geometry.complementary_and_supplementary_angle": {"tf": 1}}, "df": 1}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1.4142135623730951}, "mathgenerator.geometry.surface_area_cone": {"tf": 1.4142135623730951}, "mathgenerator.geometry.surface_area_cube": {"tf": 1.4142135623730951}, "mathgenerator.geometry.surface_area_cuboid": {"tf": 1.4142135623730951}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 1.4142135623730951}, "mathgenerator.geometry.surface_area_pyramid": {"tf": 1.4142135623730951}, "mathgenerator.geometry.surface_area_sphere": {"tf": 1.4142135623730951}}, "df": 7}}}}, "d": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.misc.surds_comparison": {"tf": 1}}, "df": 1}}}, "m": {"docs": {"mathgenerator.geometry.sum_of_polygon_angles": {"tf": 1.4142135623730951}, "mathgenerator.misc.arithmetic_progression_sum": {"tf": 1.4142135623730951}, "mathgenerator.misc.geometric_progression": {"tf": 1.4142135623730951}, "mathgenerator.statistics.dice_sum_probability": {"tf": 1.4142135623730951}}, "df": 4}}, "e": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator": {"tf": 1.4142135623730951}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.geometry.sector_area": {"tf": 1.4142135623730951}}, "df": 1}}}}, "t": {"docs": {"mathgenerator": {"tf": 1.7320508075688772}}, "df": 1, "s": {"docs": {"mathgenerator.misc.set_operation": {"tf": 1.4142135623730951}}, "df": 1}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.computer_science.fibonacci_series": {"tf": 1.4142135623730951}, "mathgenerator.misc.arithmetic_progression_sum": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_term": {"tf": 1}, "mathgenerator.statistics.mean_median": {"tf": 2}}, "df": 4}}}}, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.statistics.conditional_probability": {"tf": 1}}, "df": 1}}}}}}}}}}, "o": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator": {"tf": 2.449489742783178}, "mathgenerator.algebra.basic_algebra": {"tf": 1}, "mathgenerator.algebra.combine_like_terms": {"tf": 1}, "mathgenerator.algebra.complex_quadratic": {"tf": 1}, "mathgenerator.algebra.compound_interest": {"tf": 1}, "mathgenerator.algebra.distance_two_points": {"tf": 1}, "mathgenerator.algebra.expanding": {"tf": 1}, "mathgenerator.algebra.factoring": {"tf": 1}, "mathgenerator.algebra.int_matrix_22_determinant": {"tf": 1}, "mathgenerator.algebra.intersection_of_two_lines": {"tf": 1}, "mathgenerator.algebra.invert_matrix": {"tf": 1}, "mathgenerator.algebra.linear_equations": {"tf": 1}, "mathgenerator.algebra.log": {"tf": 1}, "mathgenerator.algebra.matrix_multiplication": {"tf": 1}, "mathgenerator.algebra.midpoint_of_two_points": {"tf": 1}, "mathgenerator.algebra.multiply_complex_numbers": {"tf": 1}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1}, "mathgenerator.algebra.quadratic_equation": {"tf": 1}, "mathgenerator.algebra.simple_interest": {"tf": 1}, "mathgenerator.algebra.system_of_equations": {"tf": 1}, "mathgenerator.algebra.vector_cross": {"tf": 1}, "mathgenerator.algebra.vector_dot": {"tf": 1}, "mathgenerator.basic_math.absolute_difference": {"tf": 1}, "mathgenerator.basic_math.addition": {"tf": 1}, "mathgenerator.basic_math.compare_fractions": {"tf": 1}, "mathgenerator.basic_math.cube_root": {"tf": 1}, "mathgenerator.basic_math.divide_fractions": {"tf": 1}, "mathgenerator.basic_math.division": {"tf": 1}, "mathgenerator.basic_math.exponentiation": {"tf": 1}, "mathgenerator.basic_math.factorial": {"tf": 1}, "mathgenerator.basic_math.fraction_multiplication": {"tf": 1}, "mathgenerator.basic_math.fraction_to_decimal": {"tf": 1}, "mathgenerator.basic_math.greatest_common_divisor": {"tf": 1}, "mathgenerator.basic_math.is_composite": {"tf": 1}, "mathgenerator.basic_math.is_prime": {"tf": 1}, "mathgenerator.basic_math.multiplication": {"tf": 1}, "mathgenerator.basic_math.percentage": {"tf": 1}, "mathgenerator.basic_math.percentage_difference": {"tf": 1}, "mathgenerator.basic_math.percentage_error": {"tf": 1}, "mathgenerator.basic_math.power_of_powers": {"tf": 1}, "mathgenerator.basic_math.square": {"tf": 1}, "mathgenerator.basic_math.square_root": {"tf": 1}, "mathgenerator.basic_math.simplify_square_root": {"tf": 1}, "mathgenerator.basic_math.subtraction": {"tf": 1}, "mathgenerator.calculus.definite_integral": {"tf": 1}, "mathgenerator.calculus.power_rule_differentiation": {"tf": 1}, "mathgenerator.calculus.power_rule_integration": {"tf": 1}, "mathgenerator.calculus.stationary_points": {"tf": 1}, "mathgenerator.calculus.trig_differentiation": {"tf": 1}, "mathgenerator.computer_science.bcd_to_decimal": {"tf": 1}, "mathgenerator.computer_science.binary_2s_complement": {"tf": 1}, "mathgenerator.computer_science.binary_complement_1s": {"tf": 1}, "mathgenerator.computer_science.binary_to_decimal": {"tf": 1}, "mathgenerator.computer_science.binary_to_hex": {"tf": 1}, "mathgenerator.computer_science.decimal_to_bcd": {"tf": 1}, "mathgenerator.computer_science.decimal_to_binary": {"tf": 1}, "mathgenerator.computer_science.decimal_to_hexadeci": {"tf": 1}, "mathgenerator.computer_science.decimal_to_octal": {"tf": 1}, "mathgenerator.computer_science.fibonacci_series": {"tf": 1}, "mathgenerator.computer_science.modulo_division": {"tf": 1}, "mathgenerator.computer_science.nth_fibonacci_number": {"tf": 1}, "mathgenerator.geometry.angle_btw_vectors": {"tf": 1}, "mathgenerator.geometry.angle_regular_polygon": {"tf": 1}, "mathgenerator.geometry.arc_length": {"tf": 1}, "mathgenerator.geometry.area_of_circle": {"tf": 1}, "mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1}, "mathgenerator.geometry.area_of_triangle": {"tf": 1}, "mathgenerator.geometry.basic_trigonometry": {"tf": 1}, "mathgenerator.geometry.circumference": {"tf": 1}, "mathgenerator.geometry.complementary_and_supplementary_angle": {"tf": 1}, "mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.degree_to_rad": {"tf": 1}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}, "mathgenerator.geometry.fourth_angle_of_quadrilateral": {"tf": 1}, "mathgenerator.geometry.perimeter_of_polygons": {"tf": 1}, "mathgenerator.geometry.pythagorean_theorem": {"tf": 1}, "mathgenerator.geometry.sector_area": {"tf": 1}, "mathgenerator.geometry.sum_of_polygon_angles": {"tf": 1}, "mathgenerator.geometry.surface_area_cone": {"tf": 1}, "mathgenerator.geometry.surface_area_cube": {"tf": 1}, "mathgenerator.geometry.surface_area_cuboid": {"tf": 1}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.surface_area_pyramid": {"tf": 1}, "mathgenerator.geometry.surface_area_sphere": {"tf": 1}, "mathgenerator.geometry.third_angle_of_triangle": {"tf": 1}, "mathgenerator.geometry.valid_triangle": {"tf": 1}, "mathgenerator.geometry.volume_cone": {"tf": 1}, "mathgenerator.geometry.volume_cube": {"tf": 1}, "mathgenerator.geometry.volume_cuboid": {"tf": 1}, "mathgenerator.geometry.volume_cylinder": {"tf": 1}, "mathgenerator.geometry.volume_cone_frustum": {"tf": 1}, "mathgenerator.geometry.volume_hemisphere": {"tf": 1}, "mathgenerator.geometry.volume_pyramid": {"tf": 1}, "mathgenerator.geometry.volume_sphere": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_sum": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_term": {"tf": 1}, "mathgenerator.misc.base_conversion": {"tf": 1}, "mathgenerator.misc.binomial_distribution": {"tf": 1}, "mathgenerator.misc.celsius_to_fahrenheit": {"tf": 1}, "mathgenerator.misc.common_factors": {"tf": 1}, "mathgenerator.misc.complex_to_polar": {"tf": 1}, "mathgenerator.misc.decimal_to_roman_numerals": {"tf": 1}, "mathgenerator.misc.euclidian_norm": {"tf": 1}, "mathgenerator.misc.factors": {"tf": 1}, "mathgenerator.misc.geometric_mean": {"tf": 1}, "mathgenerator.misc.geometric_progression": {"tf": 1}, "mathgenerator.misc.harmonic_mean": {"tf": 1}, "mathgenerator.misc.is_leap_year": {"tf": 1}, "mathgenerator.misc.lcm": {"tf": 1}, "mathgenerator.misc.minutes_to_hours": {"tf": 1}, "mathgenerator.misc.prime_factors": {"tf": 1}, "mathgenerator.misc.product_of_scientific_notations": {"tf": 1}, "mathgenerator.misc.profit_loss_percent": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_base": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_power": {"tf": 1}, "mathgenerator.misc.set_operation": {"tf": 1}, "mathgenerator.misc.signum_function": {"tf": 1}, "mathgenerator.misc.surds_comparison": {"tf": 1}, "mathgenerator.statistics.combinations": {"tf": 1}, "mathgenerator.statistics.conditional_probability": {"tf": 1}, "mathgenerator.statistics.confidence_interval": {"tf": 1}, "mathgenerator.statistics.data_summary": {"tf": 1}, "mathgenerator.statistics.dice_sum_probability": {"tf": 1}, "mathgenerator.statistics.mean_median": {"tf": 1}, "mathgenerator.statistics.permutation": {"tf": 1}}, "df": 125}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.algebra.linear_equations": {"tf": 1}, "mathgenerator.algebra.system_of_equations": {"tf": 1.4142135623730951}}, "df": 2}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.statistics.conditional_probability": {"tf": 1}}, "df": 1}}}}}}, "p": {"docs": {"mathgenerator.misc.profit_loss_percent": {"tf": 1}, "mathgenerator.statistics.conditional_probability": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.statistics.conditional_probability": {"tf": 1}}, "df": 1}}}}}}}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.surface_area_sphere": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_sphere": {"tf": 1.4142135623730951}}, "df": 2}}}}}, "q": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "{": {"1": {"2": {"5": {"6": {"docs": {"mathgenerator.algebra.distance_two_points": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "3": {"2": {"docs": {}, "df": 0, "}": {"docs": {}, "df": 0, "}": {"docs": {}, "df": 0, "{": {"2": {"docs": {"mathgenerator.algebra.complex_quadratic": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0}}}}, "docs": {}, "df": 0}, "6": {"3": {"docs": {"mathgenerator.basic_math.simplify_square_root": {"tf": 1}}, "df": 1}, "4": {"docs": {"mathgenerator.basic_math.square_root": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "[": {"3": {"docs": {}, "df": 0, "]": {"docs": {}, "df": 0, "{": {"1": {"2": {"5": {"docs": {"mathgenerator.basic_math.cube_root": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}, "docs": {}, "df": 0}}}, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.basic_math.square": {"tf": 1}, "mathgenerator.basic_math.square_root": {"tf": 1}, "mathgenerator.basic_math.simplify_square_root": {"tf": 1}}, "df": 3}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.algebra.simple_interest": {"tf": 1.4142135623730951}}, "df": 1}, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.basic_math.power_of_powers": {"tf": 1}, "mathgenerator.basic_math.simplify_square_root": {"tf": 1}}, "df": 2}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.area_of_triangle": {"tf": 1}, "mathgenerator.geometry.surface_area_cube": {"tf": 1}, "mathgenerator.geometry.volume_cube": {"tf": 1}}, "df": 3, "s": {"docs": {"mathgenerator.geometry.angle_regular_polygon": {"tf": 1}, "mathgenerator.geometry.pythagorean_theorem": {"tf": 1}, "mathgenerator.geometry.sum_of_polygon_angles": {"tf": 1}, "mathgenerator.geometry.surface_area_cuboid": {"tf": 1}, "mathgenerator.geometry.valid_triangle": {"tf": 1}, "mathgenerator.geometry.volume_cuboid": {"tf": 1}}, "df": 6}, "d": {"docs": {"mathgenerator.geometry.perimeter_of_polygons": {"tf": 1}}, "df": 1}}}, "n": {"docs": {"mathgenerator.geometry.basic_trigonometry": {"tf": 1}}, "df": 1}, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.misc.binomial_distribution": {"tf": 1}}, "df": 1}}}, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"mathgenerator.misc.signum_function": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "y": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {"mathgenerator.algebra.system_of_equations": {"tf": 1}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator.basic_math.compare_fractions": {"tf": 1}}, "df": 1}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"mathgenerator.misc.set_operation": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"mathgenerator.misc.product_of_scientific_notations": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.misc.quotient_of_power_same_base": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_power": {"tf": 1}, "mathgenerator.statistics.dice_sum_probability": {"tf": 1}}, "df": 3}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.statistics.confidence_interval": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "n": {"docs": {"mathgenerator.statistics.conditional_probability": {"tf": 1}}, "df": 1}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {"mathgenerator": {"tf": 1.4142135623730951}}, "df": 1}}}, "x": {"docs": {"mathgenerator.algebra.basic_algebra": {"tf": 1.4142135623730951}, "mathgenerator.algebra.combine_like_terms": {"tf": 1.4142135623730951}, "mathgenerator.algebra.complex_quadratic": {"tf": 1.4142135623730951}, "mathgenerator.algebra.compound_interest": {"tf": 1.4142135623730951}, "mathgenerator.algebra.distance_two_points": {"tf": 1.4142135623730951}, "mathgenerator.algebra.expanding": {"tf": 1.4142135623730951}, "mathgenerator.algebra.factoring": {"tf": 1.4142135623730951}, "mathgenerator.algebra.int_matrix_22_determinant": {"tf": 1.4142135623730951}, "mathgenerator.algebra.intersection_of_two_lines": {"tf": 1.4142135623730951}, "mathgenerator.algebra.invert_matrix": {"tf": 1.4142135623730951}, "mathgenerator.algebra.linear_equations": {"tf": 1.4142135623730951}, "mathgenerator.algebra.log": {"tf": 1.4142135623730951}, "mathgenerator.algebra.matrix_multiplication": {"tf": 1.4142135623730951}, "mathgenerator.algebra.midpoint_of_two_points": {"tf": 1.4142135623730951}, "mathgenerator.algebra.multiply_complex_numbers": {"tf": 1.4142135623730951}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1.4142135623730951}, "mathgenerator.algebra.quadratic_equation": {"tf": 1.4142135623730951}, "mathgenerator.algebra.simple_interest": {"tf": 1.4142135623730951}, "mathgenerator.algebra.system_of_equations": {"tf": 1.4142135623730951}, "mathgenerator.algebra.vector_cross": {"tf": 1.4142135623730951}, "mathgenerator.algebra.vector_dot": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.absolute_difference": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.addition": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.compare_fractions": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.cube_root": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.divide_fractions": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.division": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.exponentiation": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.factorial": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.fraction_multiplication": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.fraction_to_decimal": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.greatest_common_divisor": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.is_composite": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.is_prime": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.multiplication": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.percentage": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.percentage_difference": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.percentage_error": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.power_of_powers": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.square": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.square_root": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.simplify_square_root": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.subtraction": {"tf": 1.4142135623730951}, "mathgenerator.calculus.definite_integral": {"tf": 1.4142135623730951}, "mathgenerator.calculus.power_rule_differentiation": {"tf": 1.4142135623730951}, "mathgenerator.calculus.power_rule_integration": {"tf": 1.4142135623730951}, "mathgenerator.calculus.stationary_points": {"tf": 1.4142135623730951}, "mathgenerator.calculus.trig_differentiation": {"tf": 1.4142135623730951}, "mathgenerator.computer_science.bcd_to_decimal": {"tf": 1.4142135623730951}, "mathgenerator.computer_science.binary_2s_complement": {"tf": 1.4142135623730951}, "mathgenerator.computer_science.binary_complement_1s": {"tf": 1.4142135623730951}, "mathgenerator.computer_science.binary_to_decimal": {"tf": 1.4142135623730951}, "mathgenerator.computer_science.binary_to_hex": {"tf": 1.4142135623730951}, "mathgenerator.computer_science.decimal_to_bcd": {"tf": 1.4142135623730951}, "mathgenerator.computer_science.decimal_to_binary": {"tf": 1.4142135623730951}, "mathgenerator.computer_science.decimal_to_hexadeci": {"tf": 1.4142135623730951}, "mathgenerator.computer_science.decimal_to_octal": {"tf": 1.4142135623730951}, "mathgenerator.computer_science.fibonacci_series": {"tf": 1.4142135623730951}, "mathgenerator.computer_science.modulo_division": {"tf": 1.4142135623730951}, "mathgenerator.computer_science.nth_fibonacci_number": {"tf": 1.4142135623730951}, "mathgenerator.geometry.angle_btw_vectors": {"tf": 1.4142135623730951}, "mathgenerator.geometry.angle_regular_polygon": {"tf": 1.4142135623730951}, "mathgenerator.geometry.arc_length": {"tf": 1.4142135623730951}, "mathgenerator.geometry.area_of_circle": {"tf": 1.4142135623730951}, "mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1.4142135623730951}, "mathgenerator.geometry.area_of_triangle": {"tf": 1.4142135623730951}, "mathgenerator.geometry.basic_trigonometry": {"tf": 1.4142135623730951}, "mathgenerator.geometry.circumference": {"tf": 1.4142135623730951}, "mathgenerator.geometry.complementary_and_supplementary_angle": {"tf": 1.4142135623730951}, "mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1.4142135623730951}, "mathgenerator.geometry.degree_to_rad": {"tf": 1.4142135623730951}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1.4142135623730951}, "mathgenerator.geometry.fourth_angle_of_quadrilateral": {"tf": 1.4142135623730951}, "mathgenerator.geometry.perimeter_of_polygons": {"tf": 1.4142135623730951}, "mathgenerator.geometry.pythagorean_theorem": {"tf": 1.4142135623730951}, "mathgenerator.geometry.sector_area": {"tf": 1.4142135623730951}, "mathgenerator.geometry.sum_of_polygon_angles": {"tf": 1.4142135623730951}, "mathgenerator.geometry.surface_area_cone": {"tf": 1.4142135623730951}, "mathgenerator.geometry.surface_area_cube": {"tf": 1.4142135623730951}, "mathgenerator.geometry.surface_area_cuboid": {"tf": 1.4142135623730951}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 1.4142135623730951}, "mathgenerator.geometry.surface_area_pyramid": {"tf": 1.4142135623730951}, "mathgenerator.geometry.surface_area_sphere": {"tf": 1.4142135623730951}, "mathgenerator.geometry.third_angle_of_triangle": {"tf": 1.4142135623730951}, "mathgenerator.geometry.valid_triangle": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_cone": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_cube": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_cuboid": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_cylinder": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_cone_frustum": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_hemisphere": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_pyramid": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_sphere": {"tf": 1.4142135623730951}, "mathgenerator.misc.arithmetic_progression_sum": {"tf": 1.4142135623730951}, "mathgenerator.misc.arithmetic_progression_term": {"tf": 1.4142135623730951}, "mathgenerator.misc.base_conversion": {"tf": 1.4142135623730951}, "mathgenerator.misc.binomial_distribution": {"tf": 1.4142135623730951}, "mathgenerator.misc.celsius_to_fahrenheit": {"tf": 1.4142135623730951}, "mathgenerator.misc.common_factors": {"tf": 1.4142135623730951}, "mathgenerator.misc.complex_to_polar": {"tf": 1.4142135623730951}, "mathgenerator.misc.decimal_to_roman_numerals": {"tf": 1.4142135623730951}, "mathgenerator.misc.euclidian_norm": {"tf": 1.4142135623730951}, "mathgenerator.misc.factors": {"tf": 1.4142135623730951}, "mathgenerator.misc.geometric_mean": {"tf": 1.4142135623730951}, "mathgenerator.misc.geometric_progression": {"tf": 1.4142135623730951}, "mathgenerator.misc.harmonic_mean": {"tf": 1.4142135623730951}, "mathgenerator.misc.is_leap_year": {"tf": 1.4142135623730951}, "mathgenerator.misc.lcm": {"tf": 1.4142135623730951}, "mathgenerator.misc.minutes_to_hours": {"tf": 1.4142135623730951}, "mathgenerator.misc.prime_factors": {"tf": 1.4142135623730951}, "mathgenerator.misc.product_of_scientific_notations": {"tf": 1.4142135623730951}, "mathgenerator.misc.profit_loss_percent": {"tf": 1.4142135623730951}, "mathgenerator.misc.quotient_of_power_same_base": {"tf": 1.4142135623730951}, "mathgenerator.misc.quotient_of_power_same_power": {"tf": 1.4142135623730951}, "mathgenerator.misc.set_operation": {"tf": 1.4142135623730951}, "mathgenerator.misc.signum_function": {"tf": 1.4142135623730951}, "mathgenerator.misc.surds_comparison": {"tf": 1.4142135623730951}, "mathgenerator.statistics.combinations": {"tf": 1.4142135623730951}, "mathgenerator.statistics.conditional_probability": {"tf": 1.4142135623730951}, "mathgenerator.statistics.confidence_interval": {"tf": 1.4142135623730951}, "mathgenerator.statistics.data_summary": {"tf": 1.4142135623730951}, "mathgenerator.statistics.dice_sum_probability": {"tf": 1.4142135623730951}, "mathgenerator.statistics.mean_median": {"tf": 1.4142135623730951}, "mathgenerator.statistics.permutation": {"tf": 1.4142135623730951}}, "df": 124, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator": {"tf": 1.4142135623730951}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.basic_math.percentage_error": {"tf": 1}}, "df": 1}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"mathgenerator.algebra.expanding": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.basic_math.exponentiation": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.geometry.valid_triangle": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1, "{": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {"mathgenerator.algebra.int_matrix_22_determinant": {"tf": 1}, "mathgenerator.algebra.invert_matrix": {"tf": 1.4142135623730951}, "mathgenerator.algebra.matrix_multiplication": {"tf": 1.7320508075688772}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1.4142135623730951}}, "df": 4}}}}}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.algebra.complex_quadratic": {"tf": 1.4142135623730951}, "mathgenerator.algebra.factoring": {"tf": 1}, "mathgenerator.algebra.quadratic_equation": {"tf": 1.4142135623730951}, "mathgenerator.calculus.definite_integral": {"tf": 1.4142135623730951}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1.4142135623730951}}, "df": 5, "s": {"docs": {"mathgenerator.algebra.linear_equations": {"tf": 1.4142135623730951}, "mathgenerator.algebra.system_of_equations": {"tf": 1}}, "df": 2}}}}}, "l": {"docs": {"mathgenerator.statistics.conditional_probability": {"tf": 1}}, "df": 1, "s": {"docs": {"mathgenerator.basic_math.percentage_error": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.basic_math.percentage_error": {"tf": 1.4142135623730951}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.misc.euclidian_norm": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}, "r": {"1": {"docs": {"mathgenerator.geometry.volume_cone_frustum": {"tf": 1}}, "df": 1}, "2": {"docs": {"mathgenerator.geometry.volume_cone_frustum": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}, "w": {"docs": {"mathgenerator": {"tf": 1.4142135623730951}}, "df": 1}, "t": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.algebra.compound_interest": {"tf": 1}, "mathgenerator.algebra.simple_interest": {"tf": 1}}, "df": 2}, "i": {"docs": {}, "df": 0, "o": {"docs": {"mathgenerator.misc.geometric_progression": {"tf": 1.4142135623730951}}, "df": 1}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}, "mathgenerator.geometry.degree_to_rad": {"tf": 1.4142135623730951}, "mathgenerator.geometry.radian_to_deg": {"tf": 1}}, "df": 3}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.geometry.arc_length": {"tf": 1}, "mathgenerator.geometry.area_of_circle": {"tf": 1}, "mathgenerator.geometry.circumference": {"tf": 1}, "mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.sector_area": {"tf": 1}, "mathgenerator.geometry.surface_area_cone": {"tf": 1}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.surface_area_sphere": {"tf": 1}, "mathgenerator.geometry.volume_cone": {"tf": 1}, "mathgenerator.geometry.volume_cylinder": {"tf": 1}, "mathgenerator.geometry.volume_hemisphere": {"tf": 1}, "mathgenerator.geometry.volume_sphere": {"tf": 1}}, "df": 12}}}}, "c": {"docs": {}, "df": 0, "{": {"4": {"docs": {}, "df": 0, "}": {"docs": {}, "df": 0, "{": {"3": {"6": {"docs": {"mathgenerator.statistics.dice_sum_probability": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}, "docs": {}, "df": 0}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}, "l": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.calculus.power_rule_differentiation": {"tf": 1}, "mathgenerator.calculus.power_rule_integration": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator": {"tf": 2.23606797749979}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.basic_math.compare_fractions": {"tf": 1}}, "df": 1}}}}}}}}, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.geometry.angle_regular_polygon": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.misc.binomial_distribution": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.statistics.conditional_probability": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.basic_math.cube_root": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.square_root": {"tf": 1}, "mathgenerator.basic_math.simplify_square_root": {"tf": 1}}, "df": 3, "s": {"docs": {"mathgenerator.algebra.complex_quadratic": {"tf": 1}, "mathgenerator.algebra.factoring": {"tf": 1}}, "df": 2}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.misc.decimal_to_roman_numerals": {"tf": 1.4142135623730951}}, "df": 1}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.statistics.dice_sum_probability": {"tf": 1}}, "df": 1}}}}}, "^": {"2": {"docs": {"mathgenerator.algebra.system_of_equations": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.geometry.pythagorean_theorem": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {"mathgenerator.basic_math.greatest_common_divisor": {"tf": 1}, "mathgenerator.computer_science.fibonacci_series": {"tf": 1}, "mathgenerator.misc.geometric_mean": {"tf": 1}, "mathgenerator.misc.harmonic_mean": {"tf": 1}}, "df": 4, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}}}, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.statistics.conditional_probability": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {"mathgenerator.geometry.valid_triangle": {"tf": 1}, "mathgenerator.misc.binomial_distribution": {"tf": 1}}, "df": 2, "t": {"docs": {"mathgenerator": {"tf": 1.4142135623730951}, "mathgenerator.misc.is_leap_year": {"tf": 1}}, "df": 2, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.misc.product_of_scientific_notations": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "m": {"docs": {"mathgenerator.misc.euclidian_norm": {"tf": 2}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator": {"tf": 1.4142135623730951}}, "df": 1}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.statistics.conditional_probability": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.basic_math.percentage": {"tf": 1}, "mathgenerator.computer_science.decimal_to_bcd": {"tf": 1}, "mathgenerator.computer_science.decimal_to_octal": {"tf": 1}, "mathgenerator.computer_science.nth_fibonacci_number": {"tf": 1.4142135623730951}, "mathgenerator.misc.arithmetic_progression_term": {"tf": 1}, "mathgenerator.misc.decimal_to_roman_numerals": {"tf": 1}, "mathgenerator.misc.factors": {"tf": 1}, "mathgenerator.statistics.combinations": {"tf": 1}, "mathgenerator.statistics.permutation": {"tf": 1}}, "df": 9, "s": {"docs": {"mathgenerator.algebra.multiply_complex_numbers": {"tf": 1}, "mathgenerator.basic_math.absolute_difference": {"tf": 1}, "mathgenerator.basic_math.addition": {"tf": 1}, "mathgenerator.basic_math.greatest_common_divisor": {"tf": 1}, "mathgenerator.basic_math.percentage_difference": {"tf": 1}, "mathgenerator.basic_math.subtraction": {"tf": 1}, "mathgenerator.computer_science.fibonacci_series": {"tf": 1}, "mathgenerator.misc.geometric_mean": {"tf": 1.4142135623730951}, "mathgenerator.misc.harmonic_mean": {"tf": 1.4142135623730951}, "mathgenerator.statistics.mean_median": {"tf": 1}}, "df": 10}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.misc.decimal_to_roman_numerals": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"mathgenerator.computer_science.nth_fibonacci_number": {"tf": 1}}, "df": 1}}}, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, ":": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"3": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "w": {"docs": {"mathgenerator": {"tf": 1.7320508075688772}}, "df": 1}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.misc.minutes_to_hours": {"tf": 1.7320508075688772}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator": {"tf": 1.4142135623730951}}, "df": 1}}, "x": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator.computer_science.binary_to_hex": {"tf": 1}}, "df": 1}}}}}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator.computer_science.decimal_to_hexadeci": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.surface_area_cone": {"tf": 1}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.surface_area_pyramid": {"tf": 1}, "mathgenerator.geometry.volume_cone": {"tf": 1}, "mathgenerator.geometry.volume_cylinder": {"tf": 1}, "mathgenerator.geometry.volume_cone_frustum": {"tf": 1}, "mathgenerator.geometry.volume_pyramid": {"tf": 1}}, "df": 8}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.volume_hemisphere": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator": {"tf": 1}, "mathgenerator.geometry.pythagorean_theorem": {"tf": 1}, "mathgenerator.statistics.conditional_probability": {"tf": 1}}, "df": 3}}, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"mathgenerator.misc.harmonic_mean": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "s": {"docs": {"mathgenerator.statistics.conditional_probability": {"tf": 1}}, "df": 1}}, "c": {"docs": {}, "df": 0, "f": {"docs": {"mathgenerator.basic_math.greatest_common_divisor": {"tf": 1}}, "df": 1}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.pythagorean_theorem": {"tf": 1}}, "df": 1}}}}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}}}}}, "t": {"docs": {"mathgenerator.algebra.int_matrix_22_determinant": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.algebra.int_matrix_22_determinant": {"tf": 1}}, "df": 1}}}}}}}}}, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator.basic_math.cube_root": {"tf": 1}, "mathgenerator.basic_math.fraction_to_decimal": {"tf": 1}, "mathgenerator.computer_science.bcd_to_decimal": {"tf": 1.4142135623730951}, "mathgenerator.computer_science.binary_to_decimal": {"tf": 1}, "mathgenerator.computer_science.decimal_to_bcd": {"tf": 1.7320508075688772}, "mathgenerator.computer_science.decimal_to_binary": {"tf": 1}, "mathgenerator.computer_science.decimal_to_hexadeci": {"tf": 1}, "mathgenerator.computer_science.decimal_to_octal": {"tf": 1.4142135623730951}, "mathgenerator.misc.decimal_to_roman_numerals": {"tf": 1}}, "df": 9}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.calculus.definite_integral": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.geometry.degree_to_rad": {"tf": 1.4142135623730951}, "mathgenerator.geometry.radian_to_deg": {"tf": 1}, "mathgenerator.geometry.sector_area": {"tf": 1}, "mathgenerator.misc.celsius_to_fahrenheit": {"tf": 1.4142135623730951}}, "df": 4}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.statistics.data_summary": {"tf": 1.7320508075688772}}, "df": 1}}}}}}}}, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator": {"tf": 1.7320508075688772}}, "df": 1}}}}}}}}}}}, "n": {"docs": {"mathgenerator": {"tf": 1.4142135623730951}}, "df": 1}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.algebra.compound_interest": {"tf": 1}, "mathgenerator.algebra.simple_interest": {"tf": 1}}, "df": 2}}}}}, "t": {"docs": {"mathgenerator.algebra.vector_dot": {"tf": 1}}, "df": 1}, "e": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.geometry.valid_triangle": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.algebra.distance_two_points": {"tf": 1.4142135623730951}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.misc.binomial_distribution": {"tf": 1}}, "df": 1}}}}}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.statistics.conditional_probability": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.basic_math.absolute_difference": {"tf": 1}, "mathgenerator.basic_math.percentage_difference": {"tf": 1.4142135623730951}, "mathgenerator.misc.set_operation": {"tf": 1.7320508075688772}}, "df": 3}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.calculus.power_rule_differentiation": {"tf": 1}, "mathgenerator.calculus.trig_differentiation": {"tf": 1}}, "df": 2}}}, "e": {"docs": {"mathgenerator.calculus.power_rule_differentiation": {"tf": 1}}, "df": 1}}}}}}}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.basic_math.divide_fractions": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.basic_math.division": {"tf": 1}, "mathgenerator.computer_science.modulo_division": {"tf": 1}}, "df": 2}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.basic_math.greatest_common_divisor": {"tf": 1}}, "df": 1}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.statistics.dice_sum_probability": {"tf": 1.4142135623730951}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"mathgenerator": {"tf": 1}, "mathgenerator.statistics.data_summary": {"tf": 1}}, "df": 2}}}}, "i": {"docs": {"mathgenerator.misc.complex_to_polar": {"tf": 1}}, "df": 1, "n": {"docs": {"mathgenerator": {"tf": 2.23606797749979}, "mathgenerator.algebra.factoring": {"tf": 1}, "mathgenerator.algebra.system_of_equations": {"tf": 1}, "mathgenerator.computer_science.decimal_to_octal": {"tf": 1}, "mathgenerator.geometry.degree_to_rad": {"tf": 1}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}, "mathgenerator.misc.decimal_to_roman_numerals": {"tf": 1}, "mathgenerator.misc.surds_comparison": {"tf": 1}}, "df": 8, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator": {"tf": 2}}, "df": 1, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}}}}}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.misc.binomial_distribution": {"tf": 1}}, "df": 1}}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.algebra.compound_interest": {"tf": 1.7320508075688772}, "mathgenerator.algebra.simple_interest": {"tf": 1.7320508075688772}}, "df": 2}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.algebra.intersection_of_two_lines": {"tf": 1.4142135623730951}, "mathgenerator.misc.set_operation": {"tf": 1.7320508075688772}}, "df": 2}}}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.geometry.sum_of_polygon_angles": {"tf": 1}}, "df": 1}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator.statistics.confidence_interval": {"tf": 1.4142135623730951}}, "df": 1}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1}, "mathgenerator.computer_science.bcd_to_decimal": {"tf": 1.4142135623730951}}, "df": 2}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator.calculus.definite_integral": {"tf": 1.4142135623730951}}, "df": 1}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.calculus.power_rule_integration": {"tf": 1}}, "df": 1}}}, "e": {"docs": {"mathgenerator.calculus.power_rule_integration": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {"mathgenerator.algebra.factoring": {"tf": 1}}, "df": 1}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.algebra.invert_matrix": {"tf": 1}}, "df": 1}, "s": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.algebra.invert_matrix": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {"mathgenerator": {"tf": 2}, "mathgenerator.algebra.compound_interest": {"tf": 1}, "mathgenerator.algebra.invert_matrix": {"tf": 1}, "mathgenerator.algebra.simple_interest": {"tf": 1}, "mathgenerator.basic_math.cube_root": {"tf": 1}, "mathgenerator.basic_math.is_composite": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.is_prime": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.percentage": {"tf": 1}, "mathgenerator.basic_math.percentage_difference": {"tf": 1}, "mathgenerator.computer_science.decimal_to_octal": {"tf": 1}, "mathgenerator.computer_science.fibonacci_series": {"tf": 1}, "mathgenerator.computer_science.nth_fibonacci_number": {"tf": 1}, "mathgenerator.geometry.angle_btw_vectors": {"tf": 1}, "mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1}, "mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.degree_to_rad": {"tf": 1}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}, "mathgenerator.geometry.perimeter_of_polygons": {"tf": 1}, "mathgenerator.geometry.pythagorean_theorem": {"tf": 1}, "mathgenerator.geometry.sector_area": {"tf": 1}, "mathgenerator.geometry.sum_of_polygon_angles": {"tf": 1}, "mathgenerator.geometry.surface_area_cone": {"tf": 1}, "mathgenerator.geometry.surface_area_cube": {"tf": 1}, "mathgenerator.geometry.surface_area_cuboid": {"tf": 1}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.surface_area_pyramid": {"tf": 1}, "mathgenerator.geometry.surface_area_sphere": {"tf": 1}, "mathgenerator.geometry.volume_cone": {"tf": 1}, "mathgenerator.geometry.volume_cube": {"tf": 1}, "mathgenerator.geometry.volume_cuboid": {"tf": 1}, "mathgenerator.geometry.volume_cylinder": {"tf": 1}, "mathgenerator.geometry.volume_cone_frustum": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_pyramid": {"tf": 1}, "mathgenerator.misc.binomial_distribution": {"tf": 1}, "mathgenerator.misc.decimal_to_roman_numerals": {"tf": 1}, "mathgenerator.misc.euclidian_norm": {"tf": 1}, "mathgenerator.misc.geometric_progression": {"tf": 2}, "mathgenerator.misc.is_leap_year": {"tf": 1.7320508075688772}, "mathgenerator.misc.profit_loss_percent": {"tf": 1}, "mathgenerator.misc.set_operation": {"tf": 2.23606797749979}, "mathgenerator.misc.signum_function": {"tf": 1}, "mathgenerator.statistics.conditional_probability": {"tf": 1.4142135623730951}, "mathgenerator.statistics.confidence_interval": {"tf": 1}, "mathgenerator.statistics.data_summary": {"tf": 1.7320508075688772}, "mathgenerator.statistics.mean_median": {"tf": 1.4142135623730951}, "mathgenerator.statistics.permutation": {"tf": 1}}, "df": 46}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator": {"tf": 2}}, "df": 1}}}}}, "f": {"docs": {"mathgenerator": {"tf": 1.7320508075688772}, "mathgenerator.statistics.dice_sum_probability": {"tf": 1}}, "df": 2}, "d": {"docs": {"mathgenerator": {"tf": 2}}, "df": 1}, "o": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "t": {"docs": {"mathgenerator.algebra.factoring": {"tf": 1.4142135623730951}}, "df": 1}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator": {"tf": 1.4142135623730951}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}, "e": {"docs": {"mathgenerator": {"tf": 1.7320508075688772}}, "df": 1}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}}}}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.misc.set_operation": {"tf": 1.7320508075688772}}, "df": 1}}}}, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {"mathgenerator.misc.geometric_progression": {"tf": 1.4142135623730951}}, "df": 1}}}}, "b": {"docs": {"mathgenerator.misc.set_operation": {"tf": 2.23606797749979}}, "df": 1, "e": {"docs": {"mathgenerator": {"tf": 1.7320508075688772}}, "df": 1, "t": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.algebra.distance_two_points": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.absolute_difference": {"tf": 1}, "mathgenerator.basic_math.compare_fractions": {"tf": 1}, "mathgenerator.basic_math.percentage_difference": {"tf": 1.4142135623730951}, "mathgenerator.geometry.angle_btw_vectors": {"tf": 1.4142135623730951}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}}, "df": 6}}}}}, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "{": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {"mathgenerator.algebra.int_matrix_22_determinant": {"tf": 1}, "mathgenerator.algebra.invert_matrix": {"tf": 1.4142135623730951}, "mathgenerator.algebra.matrix_multiplication": {"tf": 1.7320508075688772}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1.4142135623730951}}, "df": 4}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.misc.binomial_distribution": {"tf": 1}}, "df": 1}}}}}}, "y": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"mathgenerator.algebra.basic_algebra": {"tf": 1}}, "df": 1}}, "e": {"docs": {"mathgenerator.geometry.surface_area_pyramid": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_pyramid": {"tf": 1.4142135623730951}, "mathgenerator.misc.base_conversion": {"tf": 1.7320508075688772}, "mathgenerator.misc.quotient_of_power_same_base": {"tf": 1}}, "df": 4}}, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"mathgenerator.misc.binomial_distribution": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator.algebra.expanding": {"tf": 1}, "mathgenerator.misc.binomial_distribution": {"tf": 1}}, "df": 2}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.computer_science.bcd_to_decimal": {"tf": 1.4142135623730951}, "mathgenerator.computer_science.binary_2s_complement": {"tf": 1}, "mathgenerator.computer_science.binary_complement_1s": {"tf": 1}, "mathgenerator.computer_science.binary_to_decimal": {"tf": 1}, "mathgenerator.computer_science.binary_to_hex": {"tf": 1}, "mathgenerator.computer_science.decimal_to_bcd": {"tf": 1}, "mathgenerator.computer_science.decimal_to_binary": {"tf": 1.4142135623730951}}, "df": 7}}}}}, "x": {"docs": {"mathgenerator.algebra.factoring": {"tf": 1}}, "df": 1}, "c": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.computer_science.decimal_to_bcd": {"tf": 1}}, "df": 1}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.misc.surds_comparison": {"tf": 1}}, "df": 1}}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.statistics.data_summary": {"tf": 1.7320508075688772}}, "df": 1}}}}}}, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator": {"tf": 1}, "mathgenerator.basic_math.percentage_error": {"tf": 1.4142135623730951}, "mathgenerator.misc.geometric_progression": {"tf": 1.7320508075688772}}, "df": 3, "s": {"docs": {"mathgenerator.geometry.basic_trigonometry": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.geometry.valid_triangle": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.misc.euclidian_norm": {"tf": 1.4142135623730951}}, "df": 1, "s": {"docs": {"mathgenerator.algebra.vector_cross": {"tf": 1}, "mathgenerator.algebra.vector_dot": {"tf": 1}, "mathgenerator.geometry.angle_btw_vectors": {"tf": 1.4142135623730951}}, "df": 3}}}}}}, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.volume_cone": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_cube": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_cuboid": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_cylinder": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_cone_frustum": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_hemisphere": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_pyramid": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_sphere": {"tf": 1.4142135623730951}}, "df": 8}}}}}}, "y": {"docs": {"mathgenerator.algebra.intersection_of_two_lines": {"tf": 1.4142135623730951}, "mathgenerator.algebra.linear_equations": {"tf": 1.4142135623730951}, "mathgenerator.algebra.system_of_equations": {"tf": 1.4142135623730951}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}}, "df": 4, "o": {"docs": {}, "df": 0, "u": {"docs": {"mathgenerator": {"tf": 2.6457513110645907}}, "df": 1, "r": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.misc.is_leap_year": {"tf": 1.7320508075688772}}, "df": 1, "s": {"docs": {"mathgenerator.algebra.compound_interest": {"tf": 1}, "mathgenerator.algebra.simple_interest": {"tf": 1}}, "df": 2}}}, "s": {"docs": {"mathgenerator.basic_math.is_composite": {"tf": 1}, "mathgenerator.basic_math.is_prime": {"tf": 1}}, "df": 2}}}, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator": {"tf": 1.4142135623730951}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator": {"tf": 2.449489742783178}}, "df": 1, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator": {"tf": 1.7320508075688772}}, "df": 1}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"mathgenerator": {"tf": 2.23606797749979}, "mathgenerator.geometry.angle_regular_polygon": {"tf": 1}, "mathgenerator.geometry.area_of_circle": {"tf": 1}, "mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1}, "mathgenerator.geometry.area_of_triangle": {"tf": 1}, "mathgenerator.geometry.circumference": {"tf": 1}, "mathgenerator.geometry.fourth_angle_of_quadrilateral": {"tf": 1}, "mathgenerator.geometry.perimeter_of_polygons": {"tf": 1}, "mathgenerator.geometry.sector_area": {"tf": 1}, "mathgenerator.geometry.sum_of_polygon_angles": {"tf": 1}, "mathgenerator.geometry.surface_area_cone": {"tf": 1}, "mathgenerator.geometry.surface_area_cube": {"tf": 1}, "mathgenerator.geometry.surface_area_cuboid": {"tf": 1}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.surface_area_pyramid": {"tf": 1}, "mathgenerator.geometry.surface_area_sphere": {"tf": 1}, "mathgenerator.geometry.third_angle_of_triangle": {"tf": 1}, "mathgenerator.geometry.valid_triangle": {"tf": 1}, "mathgenerator.geometry.volume_cone": {"tf": 1}, "mathgenerator.geometry.volume_cube": {"tf": 1}, "mathgenerator.geometry.volume_cuboid": {"tf": 1}, "mathgenerator.geometry.volume_cylinder": {"tf": 1}, "mathgenerator.geometry.volume_cone_frustum": {"tf": 1}, "mathgenerator.geometry.volume_hemisphere": {"tf": 1}, "mathgenerator.geometry.volume_pyramid": {"tf": 1}, "mathgenerator.geometry.volume_sphere": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_base": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_power": {"tf": 1}, "mathgenerator.statistics.confidence_interval": {"tf": 1}}, "df": 29, "i": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.calculus.definite_integral": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator": {"tf": 1.4142135623730951}, "mathgenerator.misc.binomial_distribution": {"tf": 1}}, "df": 2}}, "d": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"mathgenerator.geometry.surface_area_pyramid": {"tf": 1}, "mathgenerator.geometry.volume_pyramid": {"tf": 1}}, "df": 2}}}}, "g": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}, "s": {"docs": {"mathgenerator": {"tf": 2.23606797749979}}, "df": 1}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1, "s": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.algebra.quadratic_equation": {"tf": 1}, "mathgenerator.basic_math.cube_root": {"tf": 1}, "mathgenerator.basic_math.percentage": {"tf": 1}, "mathgenerator.basic_math.percentage_difference": {"tf": 1}, "mathgenerator.computer_science.nth_fibonacci_number": {"tf": 1}, "mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}, "mathgenerator.geometry.pythagorean_theorem": {"tf": 1}, "mathgenerator.geometry.sector_area": {"tf": 1}, "mathgenerator.geometry.sum_of_polygon_angles": {"tf": 1}, "mathgenerator.misc.binomial_distribution": {"tf": 1}, "mathgenerator.statistics.conditional_probability": {"tf": 1}}, "df": 12}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"mathgenerator.basic_math.compare_fractions": {"tf": 1}, "mathgenerator.statistics.conditional_probability": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.basic_math.percentage_error": {"tf": 1}, "mathgenerator.misc.profit_loss_percent": {"tf": 1}}, "df": 2}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.statistics.conditional_probability": {"tf": 1}}, "df": 1}}}}}}}, "l": {"2": {"docs": {"mathgenerator.misc.euclidian_norm": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator": {"tf": 1}, "mathgenerator.algebra.combine_like_terms": {"tf": 1}}, "df": 2}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1.4142135623730951}}, "df": 1, "s": {"docs": {"mathgenerator.algebra.intersection_of_two_lines": {"tf": 1.4142135623730951}}, "df": 1}, "a": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.algebra.linear_equations": {"tf": 1}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.calculus.definite_integral": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"mathgenerator": {"tf": 2}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "g": {"docs": {"mathgenerator.algebra.log": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "m": {"docs": {"mathgenerator.algebra.log": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.misc.profit_loss_percent": {"tf": 1.4142135623730951}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"mathgenerator.geometry.arc_length": {"tf": 1.7320508075688772}, "mathgenerator.geometry.surface_area_pyramid": {"tf": 1}, "mathgenerator.geometry.volume_cube": {"tf": 1}, "mathgenerator.geometry.volume_pyramid": {"tf": 1}}, "df": 4, "s": {"docs": {"mathgenerator.geometry.area_of_triangle": {"tf": 1}, "mathgenerator.geometry.perimeter_of_polygons": {"tf": 1}, "mathgenerator.geometry.pythagorean_theorem": {"tf": 1}, "mathgenerator.geometry.surface_area_cuboid": {"tf": 1}}, "df": 4}}}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {"mathgenerator.misc.is_leap_year": {"tf": 1.7320508075688772}}, "df": 1}, "s": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.misc.lcm": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "m": {"docs": {"mathgenerator.misc.lcm": {"tf": 1.4142135623730951}}, "df": 1}}}, "k": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {"mathgenerator": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "j": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"mathgenerator.algebra.complex_quadratic": {"tf": 1.4142135623730951}, "mathgenerator.algebra.factoring": {"tf": 1.4142135623730951}, "mathgenerator.algebra.quadratic_equation": {"tf": 1.4142135623730951}, "mathgenerator.calculus.definite_integral": {"tf": 1}}, "df": 4}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator.geometry.fourth_angle_of_quadrilateral": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.misc.quotient_of_power_same_base": {"tf": 1.4142135623730951}, "mathgenerator.misc.quotient_of_power_same_power": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}}, "x": {"1": {"docs": {"mathgenerator.algebra.factoring": {"tf": 1}}, "df": 1}, "2": {"docs": {"mathgenerator.algebra.factoring": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.algebra.expanding": {"tf": 1}, "mathgenerator.algebra.factoring": {"tf": 1.7320508075688772}, "mathgenerator.algebra.linear_equations": {"tf": 1.4142135623730951}, "mathgenerator.algebra.system_of_equations": {"tf": 1.7320508075688772}, "mathgenerator.calculus.stationary_points": {"tf": 1.4142135623730951}}, "df": 5, "^": {"2": {"docs": {"mathgenerator.algebra.complex_quadratic": {"tf": 1}, "mathgenerator.algebra.factoring": {"tf": 1}, "mathgenerator.calculus.stationary_points": {"tf": 1}}, "df": 3, "+": {"1": {"8": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "+": {"1": {"8": {"docs": {"mathgenerator.algebra.expanding": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}, "docs": {}, "df": 0}, "2": {"docs": {}, "df": 0, "x": {"docs": {"mathgenerator.algebra.factoring": {"tf": 1}}, "df": 1}}, "docs": {}, "df": 0}}, "3": {"docs": {"mathgenerator.calculus.stationary_points": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "+": {"6": {"docs": {"mathgenerator.algebra.factoring": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "i": {"docs": {"mathgenerator.misc.decimal_to_roman_numerals": {"tf": 1}}, "df": 1}}}}, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.algebra.quadratic_equation": {"tf": 1}}, "df": 1}}}}}}}}, "pipeline": ["trimmer"], "_isPrebuiltIndex": true}; + /** pdoc search index */const docs = {"version": "0.9.5", "fields": ["qualname", "fullname", "annotation", "default_value", "signature", "bases", "doc"], "ref": "fullname", "documentStore": {"docs": {"mathgenerator": {"fullname": "mathgenerator", "modulename": "mathgenerator", "kind": "module", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nNumber of Permutations from $18$ objects picked $5$ at a time is: \n$1028160$ \nmathgenerator
\n\nA math problem generator, created for the purpose of giving teachers and students the means to easily get access to random math exercises to suit their needs.
\n\nTo try out generators, go to https://mathgenerator-demo.netlify.app
\n\nSee CONTRIBUTING.md for information about how to contribute.
\n\nTable of Contents
\n\n\n
\n\n- Installation
\n- Usage
\n- Documentation
\nInstallation
\n\nThe project can be install via pip
\n\n\n\n\n\npip install mathgenerator\nUsage
\n\nHere is an example of how you would generate an addition problem:
\n\n\n\n\n\nimport mathgenerator\n\n#generate an addition problem\nproblem, solution = mathgenerator.addition()\n\n#another way to generate an addition problem using genById()\nproblem, solution = mathgenerator.genById(0)\nYou may prefer to use
\n\nimport mathgenerator as mgand run functions likemg.addition()so that you don't have to type as much.\n\nProblem/solution pairs are generated with either:\n
\n\n- \n
mathgenerator.<generator_name>()- generates a problem, solution set from the given generator name.- \n
mathgenerator.genById(id)- generates a problem, solution set with generator id provided by theidparameter\nYou can also use
getGenList()to return a list of all generators included in the library in the format:\n\n\n\n\n[funcname, subjectname]\nDocumentation
\n\nDocumentation can be found at https://lukew3.github.io/mathgenerator
\n"}, "mathgenerator.get_gen_list": {"fullname": "mathgenerator.get_gen_list", "modulename": "mathgenerator", "qualname": "get_gen_list", "kind": "function", "doc": "\n", "signature": "():", "funcdef": "def"}, "mathgenerator.gen_by_id": {"fullname": "mathgenerator.gen_by_id", "modulename": "mathgenerator", "qualname": "gen_by_id", "kind": "function", "doc": "\n", "signature": "(id, *args, **kwargs):", "funcdef": "def"}, "mathgenerator.getGenList": {"fullname": "mathgenerator.getGenList", "modulename": "mathgenerator", "qualname": "getGenList", "kind": "function", "doc": "\n", "signature": "():", "funcdef": "def"}, "mathgenerator.genById": {"fullname": "mathgenerator.genById", "modulename": "mathgenerator", "qualname": "genById", "kind": "function", "doc": "\n", "signature": "(id, *args, **kwargs):", "funcdef": "def"}, "mathgenerator.algebra": {"fullname": "mathgenerator.algebra", "modulename": "mathgenerator.algebra", "kind": "module", "doc": "\n"}, "mathgenerator.algebra.basic_algebra": {"fullname": "mathgenerator.algebra.basic_algebra", "modulename": "mathgenerator.algebra", "qualname": "basic_algebra", "kind": "function", "doc": "Basic Algebra
\n\n\n\n
\n", "signature": "(max_variable=10):", "funcdef": "def"}, "mathgenerator.algebra.combine_like_terms": {"fullname": "mathgenerator.algebra.combine_like_terms", "modulename": "mathgenerator.algebra", "qualname": "combine_like_terms", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n$1x + 5 = 5$ \n$0$ \nCombine Like Terms
\n\n\n\n
\n", "signature": "(max_coef=10, max_exp=20, max_terms=10):", "funcdef": "def"}, "mathgenerator.algebra.complex_quadratic": {"fullname": "mathgenerator.algebra.complex_quadratic", "modulename": "mathgenerator.algebra", "qualname": "complex_quadratic", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n$6x^{9} + 3x^{2} + 5x^{19} + 3x^{17}$ \n$3x^{2} + 6x^{9} + 3x^{17} + 5x^{19}$ \nComplex Quadratic Equation
\n\n\n\n
\n", "signature": "(prob_type=0, max_range=10):", "funcdef": "def"}, "mathgenerator.algebra.compound_interest": {"fullname": "mathgenerator.algebra.compound_interest", "modulename": "mathgenerator.algebra", "qualname": "compound_interest", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nFind the roots of given Quadratic Equation $x^2 + 8x + 8 = 0$ \n$((-1.172, -6.828)) = (\\frac{-8 + \\sqrt{32}}{21}, (\\frac{-8 - \\sqrt{32}}{21})$ \nCompound Interest
\n\n\n\n
\n", "signature": "(max_principle=10000, max_rate=10, max_time=10):", "funcdef": "def"}, "mathgenerator.algebra.distance_two_points": {"fullname": "mathgenerator.algebra.distance_two_points", "modulename": "mathgenerator.algebra", "qualname": "distance_two_points", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nCompound interest for a principle amount of $2679$ dollars, $9$% rate of interest and for a time period of $3$ years is $=$ \n$3469.38$ \nDistance between 2 points
\n\n\n\n
\n", "signature": "(max_val_xy=20, min_val_xy=-20):", "funcdef": "def"}, "mathgenerator.algebra.expanding": {"fullname": "mathgenerator.algebra.expanding", "modulename": "mathgenerator.algebra", "qualname": "expanding", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nFind the distance between $(-19, -6)$ and $(15, -16)$ \n$\\sqrt{1256}$ \nExpanding Factored Binomial
\n\n\n\n
\n", "signature": "(range_x1=10, range_x2=10, range_a=10, range_b=10):", "funcdef": "def"}, "mathgenerator.algebra.factoring": {"fullname": "mathgenerator.algebra.factoring", "modulename": "mathgenerator.algebra", "qualname": "factoring", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n$(x-6)(-3x-3)$ \n$x^2+18x+18$ \nFactoring Quadratic\nGiven a quadratic equation in the form x^2 + bx + c, factor it into it's roots (x - x1)(x -x2)
\n\n\n\n
\n", "signature": "(range_x1=10, range_x2=10):", "funcdef": "def"}, "mathgenerator.algebra.int_matrix_22_determinant": {"fullname": "mathgenerator.algebra.int_matrix_22_determinant", "modulename": "mathgenerator.algebra", "qualname": "int_matrix_22_determinant", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n$x^2+2x-24$ \n$(x-4)(x+6)$ \nDeterminant to 2x2 Matrix
\n\n\n\n
\n", "signature": "(max_matrix_val=100):", "funcdef": "def"}, "mathgenerator.algebra.intersection_of_two_lines": {"fullname": "mathgenerator.algebra.intersection_of_two_lines", "modulename": "mathgenerator.algebra", "qualname": "intersection_of_two_lines", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n$\\det \\begin{bmatrix} 88 & 40 \\\\ 9 & 91 \\end{bmatrix}= $ \n$7648$ \nIntersection of two lines
\n\n\n\n
\n", "signature": "(\tmin_m=-10,\tmax_m=10,\tmin_b=-10,\tmax_b=10,\tmin_denominator=1,\tmax_denominator=6):", "funcdef": "def"}, "mathgenerator.algebra.invert_matrix": {"fullname": "mathgenerator.algebra.invert_matrix", "modulename": "mathgenerator.algebra", "qualname": "invert_matrix", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nFind the point of intersection of the two lines: $y = \\frac{-2}{6}x + 3$ and $y = \\frac{3}{6}x - 8$ \n$(\\frac{66}{5}, \\frac{-7}{5})$ \nInvert Matrix
\n\n\n\n
\n", "signature": "(\tsquare_matrix_dimension=3,\tmax_matrix_element=99,\tonly_integer_elements_in_inverted_matrixe=True):", "funcdef": "def"}, "mathgenerator.algebra.linear_equations": {"fullname": "mathgenerator.algebra.linear_equations", "modulename": "mathgenerator.algebra", "qualname": "linear_equations", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nInverse of Matrix $\\begin{bmatrix} 4 & 1 & 4 \\\\ 5 & 1 & 5 \\\\ 12 & 3 & 13 \\end{bmatrix}$ is: \n$\\begin{bmatrix} 2 & 1 & -1 \\\\ 5 & -4 & 0 \\\\ -3 & 0 & 1 \\end{bmatrix}$ \nLinear Equations
\n\n\n\n
\n", "signature": "(n=2, var_range=20, coeff_range=20):", "funcdef": "def"}, "mathgenerator.algebra.line_equation_from_2_points": {"fullname": "mathgenerator.algebra.line_equation_from_2_points", "modulename": "mathgenerator.algebra", "qualname": "line_equation_from_2_points", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nGiven the equations $10x + -20y = 310$ and $-16x + -17y = 141$, solve for $x$ and $y$ \n$x = 5$, $y = -13$ \nEquation of Line from Two Points
\n\n\n\n
\n", "signature": "(max_val=20):", "funcdef": "def"}, "mathgenerator.algebra.log": {"fullname": "mathgenerator.algebra.log", "modulename": "mathgenerator.algebra", "qualname": "log", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nFind the equation of the line passing through the points $(-19,-8)$ and $(-2,0)$. \n$y=\\frac{8}{17}x+\\frac{16}{17}$ \nLogarithm
\n\n\n\n
\n", "signature": "(max_base=3, max_val=8):", "funcdef": "def"}, "mathgenerator.algebra.matrix_multiplication": {"fullname": "mathgenerator.algebra.matrix_multiplication", "modulename": "mathgenerator.algebra", "qualname": "matrix_multiplication", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n$log_{3}(243)=$ \n$5$ \nMultiply Two Matrices
\n\n\n\n
\n", "signature": "(max_val=100, max_dim=10):", "funcdef": "def"}, "mathgenerator.algebra.midpoint_of_two_points": {"fullname": "mathgenerator.algebra.midpoint_of_two_points", "modulename": "mathgenerator.algebra", "qualname": "midpoint_of_two_points", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nMultiply $\\begin{bmatrix} 15 & 72 \\\\ 64 & -20 \\\\ 18 & 59 \\\\ -21 & -55 \\\\ 20 & -12 \\\\ -75 & -42 \\\\ 47 & 89 \\\\ -53 & 27 \\\\ -56 & 44 \\end{bmatrix}$ and $\\begin{bmatrix} 49 & -2 & 68 & -28 \\\\ 49 & 6 & 83 & 42 \\end{bmatrix}$ \n$\\begin{bmatrix} 4263 & 402 & 6996 & 2604 \\\\ 2156 & -248 & 2692 & -2632 \\\\ 3773 & 318 & 6121 & 1974 \\\\ -3724 & -288 & -5993 & -1722 \\\\ 392 & -112 & 364 & -1064 \\\\ -5733 & -102 & -8586 & 336 \\\\ 6664 & 440 & 10583 & 2422 \\\\ -1274 & 268 & -1363 & 2618 \\\\ -588 & 376 & -156 & 3416 \\end{bmatrix}$ \nMidpoint of two points
\n\n\n\n
\n", "signature": "(max_value=20):", "funcdef": "def"}, "mathgenerator.algebra.multiply_complex_numbers": {"fullname": "mathgenerator.algebra.multiply_complex_numbers", "modulename": "mathgenerator.algebra", "qualname": "multiply_complex_numbers", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nThe midpoint of $(-8,10)$ and $(18,0) = $ \n$(5.0,5.0)$ \nMultiplication of 2 complex numbers
\n\n\n\n
\n", "signature": "(min_real_imaginary_num=-20, max_real_imaginary_num=20):", "funcdef": "def"}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"fullname": "mathgenerator.algebra.multiply_int_to_22_matrix", "modulename": "mathgenerator.algebra", "qualname": "multiply_int_to_22_matrix", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n$(14+18j) * (14+15j) = $ \n$(-74+462j)$ \nMultiply Integer to 2x2 Matrix
\n\n\n\n
\n", "signature": "(max_matrix_val=10, max_res=100):", "funcdef": "def"}, "mathgenerator.algebra.quadratic_equation": {"fullname": "mathgenerator.algebra.quadratic_equation", "modulename": "mathgenerator.algebra", "qualname": "quadratic_equation", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n$5 * \\begin{bmatrix} 1 & 0 \\\\ 2 & 9 \\end{bmatrix} =$ \n$\\begin{bmatrix} 5 & 0 \\\\ 10 & 45 \\end{bmatrix}$ \nQuadratic Equation
\n\n\n\n
\n", "signature": "(max_val=100):", "funcdef": "def"}, "mathgenerator.algebra.simple_interest": {"fullname": "mathgenerator.algebra.simple_interest", "modulename": "mathgenerator.algebra", "qualname": "simple_interest", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nWhat are the zeros of the quadratic equation $22x^2+137x+25=0$ \n${-0.19, -6.04}$ \nSimple Interest
\n\n\n\n
\n", "signature": "(max_principle=10000, max_rate=10, max_time=10):", "funcdef": "def"}, "mathgenerator.algebra.system_of_equations": {"fullname": "mathgenerator.algebra.system_of_equations", "modulename": "mathgenerator.algebra", "qualname": "system_of_equations", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nSimple interest for a principle amount of $7217$ dollars, $3$% rate of interest and for a time period of $10$ years is $=$ \n$2165.1$ \nSolve a System of Equations in R^2
\n\n\n\n
\n", "signature": "(range_x=10, range_y=10, coeff_mult_range=10):", "funcdef": "def"}, "mathgenerator.algebra.vector_cross": {"fullname": "mathgenerator.algebra.vector_cross", "modulename": "mathgenerator.algebra", "qualname": "vector_cross", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nGiven $-x + 5y = -28$ and $9x + 2y = 64$, solve for $x$ and $y$. \n$x = 8$, $y = -4$ \nCross product of 2 vectors
\n\n\n\n
\n", "signature": "(min_val=-20, max_val=20):", "funcdef": "def"}, "mathgenerator.algebra.vector_dot": {"fullname": "mathgenerator.algebra.vector_dot", "modulename": "mathgenerator.algebra", "qualname": "vector_dot", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n$[-1, -4, 10] \\times [-11, 1, -16] = $ \n$[54, -126, -45]$ \nDot product of 2 vectors
\n\n\n\n
\n", "signature": "(min_val=-20, max_val=20):", "funcdef": "def"}, "mathgenerator.basic_math": {"fullname": "mathgenerator.basic_math", "modulename": "mathgenerator.basic_math", "kind": "module", "doc": "\n"}, "mathgenerator.basic_math.absolute_difference": {"fullname": "mathgenerator.basic_math.absolute_difference", "modulename": "mathgenerator.basic_math", "qualname": "absolute_difference", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n$[12, -9, -8]\\cdot[-9, 8, 1]=$ \n$-188$ \nAbsolute difference between two numbers
\n\n\n\n
\n", "signature": "(max_a=100, max_b=100):", "funcdef": "def"}, "mathgenerator.basic_math.addition": {"fullname": "mathgenerator.basic_math.addition", "modulename": "mathgenerator.basic_math", "qualname": "addition", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n$ \n22-34 \n=$ \n$12$ \nAddition of two numbers
\n\n\n\n
\n", "signature": "(max_sum=99, max_addend=50):", "funcdef": "def"}, "mathgenerator.basic_math.compare_fractions": {"fullname": "mathgenerator.basic_math.compare_fractions", "modulename": "mathgenerator.basic_math", "qualname": "compare_fractions", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n$22+34=$ \n$56$ \nCompare Fractions
\n\n\n\n
\n", "signature": "(max_val=10):", "funcdef": "def"}, "mathgenerator.basic_math.cube_root": {"fullname": "mathgenerator.basic_math.cube_root", "modulename": "mathgenerator.basic_math", "qualname": "cube_root", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nWhich symbol represents the comparison between $\\frac{1}{2}$ and $\\frac{3}{4}$? \n$>$ \nCube Root
\n\n\n\n
\n", "signature": "(min_no=1, max_no=1000):", "funcdef": "def"}, "mathgenerator.basic_math.divide_fractions": {"fullname": "mathgenerator.basic_math.divide_fractions", "modulename": "mathgenerator.basic_math", "qualname": "divide_fractions", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nWhat is the cube root of: $\\sqrt[3]{125}=$ to 2 decimal places? \n$5$ \nDivide Fractions
\n\n\n\n
\n", "signature": "(max_val=10):", "funcdef": "def"}, "mathgenerator.basic_math.division": {"fullname": "mathgenerator.basic_math.division", "modulename": "mathgenerator.basic_math", "qualname": "division", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n$\\frac{7}{9}\\div\\frac{4}{1}=$ \n$\\frac{7}{36}$ \nDivision
\n\n\n\n
\n", "signature": "(max_a=25, max_b=25):", "funcdef": "def"}, "mathgenerator.basic_math.exponentiation": {"fullname": "mathgenerator.basic_math.exponentiation", "modulename": "mathgenerator.basic_math", "qualname": "exponentiation", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n$216\\div24=$ \n$9$ \nExponentiation
\n\n\n\n
\n", "signature": "(max_base=20, max_expo=10):", "funcdef": "def"}, "mathgenerator.basic_math.factorial": {"fullname": "mathgenerator.basic_math.factorial", "modulename": "mathgenerator.basic_math", "qualname": "factorial", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n$9^{5}=$ \n$8$ \nFactorial
\n\n\n\n
\n", "signature": "(max_input=6):", "funcdef": "def"}, "mathgenerator.basic_math.fraction_multiplication": {"fullname": "mathgenerator.basic_math.fraction_multiplication", "modulename": "mathgenerator.basic_math", "qualname": "fraction_multiplication", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n$4! =$ \n$24$ \nFraction Multiplication
\n\n\n\n
\n", "signature": "(max_val=10):", "funcdef": "def"}, "mathgenerator.basic_math.fraction_to_decimal": {"fullname": "mathgenerator.basic_math.fraction_to_decimal", "modulename": "mathgenerator.basic_math", "qualname": "fraction_to_decimal", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n$\\frac{3}{10}\\cdot\\frac{6}{7}=$ \n$\\frac{9}{35}$ \nFraction to Decimal
\n\n\n\n
\n", "signature": "(max_res=99, max_divid=99):", "funcdef": "def"}, "mathgenerator.basic_math.greatest_common_divisor": {"fullname": "mathgenerator.basic_math.greatest_common_divisor", "modulename": "mathgenerator.basic_math", "qualname": "greatest_common_divisor", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n$83\\div80=$ \n$1.04$ \nGreatest Common Divisor of N Numbers ( GCD / HCF )
\n\n\n\n
\n", "signature": "(numbers_count=2, max_num=1000):", "funcdef": "def"}, "mathgenerator.basic_math.is_composite": {"fullname": "mathgenerator.basic_math.is_composite", "modulename": "mathgenerator.basic_math", "qualname": "is_composite", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n$GCD(488075608, 75348096)=$ \n$8$ \nIs Composite
\n\n\n\n
\n", "signature": "(max_num=250):", "funcdef": "def"}, "mathgenerator.basic_math.is_prime": {"fullname": "mathgenerator.basic_math.is_prime", "modulename": "mathgenerator.basic_math", "qualname": "is_prime", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nIs $171$ composite? \nYes \nIs Prime
\n\n\n\n
\n", "signature": "(max_num=100):", "funcdef": "def"}, "mathgenerator.basic_math.multiplication": {"fullname": "mathgenerator.basic_math.multiplication", "modulename": "mathgenerator.basic_math", "qualname": "multiplication", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nIs $37$ prime? \nYes \nMultiplication
\n\n\n\n
\n", "signature": "(max_multi=12):", "funcdef": "def"}, "mathgenerator.basic_math.percentage": {"fullname": "mathgenerator.basic_math.percentage", "modulename": "mathgenerator.basic_math", "qualname": "percentage", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n$10\\cdot9=$ \n$90$ \nPercentage of a number
\n\n\n\n
\n", "signature": "(max_value=99, max_percentage=99):", "funcdef": "def"}, "mathgenerator.basic_math.percentage_difference": {"fullname": "mathgenerator.basic_math.percentage_difference", "modulename": "mathgenerator.basic_math", "qualname": "percentage_difference", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nWhat is $45$% of $39$? \n$17.55$ \nPercentage difference between two numbers
\n\n\n\n
\n", "signature": "(max_value=200, min_value=0):", "funcdef": "def"}, "mathgenerator.basic_math.percentage_error": {"fullname": "mathgenerator.basic_math.percentage_error", "modulename": "mathgenerator.basic_math", "qualname": "percentage_error", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nWhat is the percentage difference between $2$ and $10$? \n$133.33$ \nPercentage error
\n\n\n\n
\n", "signature": "(max_value=100, min_value=-100):", "funcdef": "def"}, "mathgenerator.basic_math.power_of_powers": {"fullname": "mathgenerator.basic_math.power_of_powers", "modulename": "mathgenerator.basic_math", "qualname": "power_of_powers", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nFind the percentage error when observed value equals $32$ and exact value equals $81$. \n$60.49$% \nPower of Powers
\n\n\n\n
\n", "signature": "(max_base=50, max_power=10):", "funcdef": "def"}, "mathgenerator.basic_math.square": {"fullname": "mathgenerator.basic_math.square", "modulename": "mathgenerator.basic_math", "qualname": "square", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nSimplify $18^{10^{8}}$ \n$18^{80}$ \nSquare
\n\n\n\n
\n", "signature": "(max_square_num=20):", "funcdef": "def"}, "mathgenerator.basic_math.square_root": {"fullname": "mathgenerator.basic_math.square_root", "modulename": "mathgenerator.basic_math", "qualname": "square_root", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n$17^2=$ \n$289$ \nSquare Root
\n\n\n\n
\n", "signature": "(min_no=1, max_no=12):", "funcdef": "def"}, "mathgenerator.basic_math.simplify_square_root": {"fullname": "mathgenerator.basic_math.simplify_square_root", "modulename": "mathgenerator.basic_math", "qualname": "simplify_square_root", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n$\\sqrt{64}=$ \n$8$ \nSimplify Square Root
\n\n\n\n
\n", "signature": "(max_variable=100):", "funcdef": "def"}, "mathgenerator.basic_math.subtraction": {"fullname": "mathgenerator.basic_math.subtraction", "modulename": "mathgenerator.basic_math", "qualname": "subtraction", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n$\\sqrt{63}$ \n$3\\sqrt{7}$ \nSubtraction of two numbers
\n\n\n\n
\n", "signature": "(max_minuend=99, max_diff=99):", "funcdef": "def"}, "mathgenerator.calculus": {"fullname": "mathgenerator.calculus", "modulename": "mathgenerator.calculus", "kind": "module", "doc": "\n"}, "mathgenerator.calculus.definite_integral": {"fullname": "mathgenerator.calculus.definite_integral", "modulename": "mathgenerator.calculus", "qualname": "definite_integral", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n$54-22=$ \n$32$ \nDefinite Integral of Quadratic Equation
\n\n\n\n
\n", "signature": "(max_coef=100):", "funcdef": "def"}, "mathgenerator.calculus.power_rule_differentiation": {"fullname": "mathgenerator.calculus.power_rule_differentiation", "modulename": "mathgenerator.calculus", "qualname": "power_rule_differentiation", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nThe definite integral within limits $0$ to $1$ of the equation $28x^2 + 32x + 66 = $ \n$91.33$ \nPower Rule Differentiation
\n\n\n\n
\n", "signature": "(max_coef=10, max_exp=10, max_terms=5):", "funcdef": "def"}, "mathgenerator.calculus.power_rule_integration": {"fullname": "mathgenerator.calculus.power_rule_integration", "modulename": "mathgenerator.calculus", "qualname": "power_rule_integration", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nDifferentiate $1x^{5} + 4x^{7} + 4x^{4}$ \n$5x^{4} + 28x^{6} + 16x^{3}$ \nPower Rule Integration
\n\n\n\n
\n", "signature": "(max_coef=10, max_exp=10, max_terms=5):", "funcdef": "def"}, "mathgenerator.calculus.stationary_points": {"fullname": "mathgenerator.calculus.stationary_points", "modulename": "mathgenerator.calculus", "qualname": "stationary_points", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nIntegrate $9x^{6} + 2x^{6} + 4x^{3}$ \n$\\frac{9}{6}x^{7} + \\frac{2}{6}x^{7} + \\frac{4}{3}x^{4} + C$ \nStationary Points
\n\n\n\n
\n", "signature": "(max_exp=3, max_coef=10):", "funcdef": "def"}, "mathgenerator.calculus.trig_differentiation": {"fullname": "mathgenerator.calculus.trig_differentiation", "modulename": "mathgenerator.calculus", "qualname": "trig_differentiation", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n$f(x)=6x^3 + 6x^2 + x + 8$ \n${- \\frac{1}{3} - \\frac{\\sqrt{2}}{6}, - \\frac{1}{3} + \\frac{\\sqrt{2}}{6}}$ \nTrigonometric Differentiation
\n\n\n\n
\n", "signature": "():", "funcdef": "def"}, "mathgenerator.computer_science": {"fullname": "mathgenerator.computer_science", "modulename": "mathgenerator.computer_science", "kind": "module", "doc": "\n"}, "mathgenerator.computer_science.bcd_to_decimal": {"fullname": "mathgenerator.computer_science.bcd_to_decimal", "modulename": "mathgenerator.computer_science", "qualname": "bcd_to_decimal", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n$\\frac{d}{dx}(\\csc)=$ \n$-\\csc \\cdot \\cot$ \nBinary Coded Decimal to Integer
\n\n\n\n
\n", "signature": "(max_number=10000):", "funcdef": "def"}, "mathgenerator.computer_science.binary_2s_complement": {"fullname": "mathgenerator.computer_science.binary_2s_complement", "modulename": "mathgenerator.computer_science", "qualname": "binary_2s_complement", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nInteger of Binary Coded Decimal $4 =$ \n$17801$ \nBinary 2's Complement
\n\n\n\n
\n", "signature": "(maxDigits=10):", "funcdef": "def"}, "mathgenerator.computer_science.binary_complement_1s": {"fullname": "mathgenerator.computer_science.binary_complement_1s", "modulename": "mathgenerator.computer_science", "qualname": "binary_complement_1s", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n2's complement of $1011 = $ \n$101$ \nBinary Complement 1s
\n\n\n\n
\n", "signature": "(maxDigits=10):", "funcdef": "def"}, "mathgenerator.computer_science.binary_to_decimal": {"fullname": "mathgenerator.computer_science.binary_to_decimal", "modulename": "mathgenerator.computer_science", "qualname": "binary_to_decimal", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n$1111001 = $ \n$0000110$ \nBinary to Decimal
\n\n\n\n
\n", "signature": "(max_dig=10):", "funcdef": "def"}, "mathgenerator.computer_science.binary_to_hex": {"fullname": "mathgenerator.computer_science.binary_to_hex", "modulename": "mathgenerator.computer_science", "qualname": "binary_to_hex", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n$000110$ \n$6$ \nBinary to Hexidecimal
\n\n\n\n
\n", "signature": "(max_dig=10):", "funcdef": "def"}, "mathgenerator.computer_science.decimal_to_bcd": {"fullname": "mathgenerator.computer_science.decimal_to_bcd", "modulename": "mathgenerator.computer_science", "qualname": "decimal_to_bcd", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n$010101$ \n$0x15$ \nDecimal to Binary Coded Decimal
\n\n\n\n
\n", "signature": "(max_number=10000):", "funcdef": "def"}, "mathgenerator.computer_science.decimal_to_binary": {"fullname": "mathgenerator.computer_science.decimal_to_binary", "modulename": "mathgenerator.computer_science", "qualname": "decimal_to_binary", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nBCD of Decimal Number $6575 = $ \n$191015$ \nDecimal to Binary
\n\n\n\n
\n", "signature": "(max_dec=99):", "funcdef": "def"}, "mathgenerator.computer_science.decimal_to_hexadeci": {"fullname": "mathgenerator.computer_science.decimal_to_hexadeci", "modulename": "mathgenerator.computer_science", "qualname": "decimal_to_hexadeci", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nBinary of $4 = $ \n$100$ \nDecimal to Hexadecimal
\n\n\n\n
\n", "signature": "(max_dec=1000):", "funcdef": "def"}, "mathgenerator.computer_science.decimal_to_octal": {"fullname": "mathgenerator.computer_science.decimal_to_octal", "modulename": "mathgenerator.computer_science", "qualname": "decimal_to_octal", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nHexadecimal of $410 = $ \n$0x19a$ \nDecimal to Octal
\n\n\n\n
\n", "signature": "(max_decimal=4096):", "funcdef": "def"}, "mathgenerator.computer_science.fibonacci_series": {"fullname": "mathgenerator.computer_science.fibonacci_series", "modulename": "mathgenerator.computer_science", "qualname": "fibonacci_series", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nThe decimal number $3698$ in octal is: \n$0o7162$ \nFibonacci Series
\n\n\n\n
\n", "signature": "(min_no=1):", "funcdef": "def"}, "mathgenerator.computer_science.modulo_division": {"fullname": "mathgenerator.computer_science.modulo_division", "modulename": "mathgenerator.computer_science", "qualname": "modulo_division", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nThe Fibonacci Series of the first ${n}$ numbers is ? \n$0, 1, 1, 2, 3, 5, 8, 13, 21$ \nModulo Division
\n\n\n\n
\n", "signature": "(max_res=99, max_modulo=99):", "funcdef": "def"}, "mathgenerator.computer_science.nth_fibonacci_number": {"fullname": "mathgenerator.computer_science.nth_fibonacci_number", "modulename": "mathgenerator.computer_science", "qualname": "nth_fibonacci_number", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n$43$ % $33 = $ \n$10$ \nnth Fibonacci number
\n\n\n\n
\n", "signature": "(max_n=100):", "funcdef": "def"}, "mathgenerator.geometry": {"fullname": "mathgenerator.geometry", "modulename": "mathgenerator.geometry", "kind": "module", "doc": "\n"}, "mathgenerator.geometry.angle_btw_vectors": {"fullname": "mathgenerator.geometry.angle_btw_vectors", "modulename": "mathgenerator.geometry", "qualname": "angle_btw_vectors", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nWhat is the 85th Fibonacci number? \n$259695496911123328$ \nAngle between 2 vectors
\n\n\n\n
\n", "signature": "(max_elt_amt=20):", "funcdef": "def"}, "mathgenerator.geometry.angle_regular_polygon": {"fullname": "mathgenerator.geometry.angle_regular_polygon", "modulename": "mathgenerator.geometry", "qualname": "angle_regular_polygon", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nangle between the vectors $[363.84, 195.54, 997.08, 39.26, 60.14, 722.7, 888.57, 713.15, 436.22, 712.23, 349.23, 595.91, 191.8, 824.58, 861.56, 122.73, 815.14, 700.68, 506.5]$ and $[760.85, 934.67, 513.37, 796.93, 809.97, 423.54, 162.69, 758.96, 133.42, 478.14, 771.84, 824.88, 483.07, 134.41, 954.41, 893.42, 191.01, 453.97, 648.59]$ is: \n$0.81$ radians \nAngle of a Regular Polygon
\n\n\n\n
\n", "signature": "(min_val=3, max_val=20):", "funcdef": "def"}, "mathgenerator.geometry.arc_length": {"fullname": "mathgenerator.geometry.arc_length", "modulename": "mathgenerator.geometry", "qualname": "arc_length", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nFind the angle of a regular polygon with $8$ sides \n$135.0$ \nArc length of Angle
\n\n\n\n
\n", "signature": "(max_radius=49, max_angle=359):", "funcdef": "def"}, "mathgenerator.geometry.area_of_circle": {"fullname": "mathgenerator.geometry.area_of_circle", "modulename": "mathgenerator.geometry", "qualname": "area_of_circle", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nGiven radius, $44$ and angle, $184$. Find the arc length of the angle. \nArc length of the angle $= 141.30186$ \nArea of Circle
\n\n\n\n
\n", "signature": "(max_radius=100):", "funcdef": "def"}, "mathgenerator.geometry.area_of_circle_given_center_and_point": {"fullname": "mathgenerator.geometry.area_of_circle_given_center_and_point", "modulename": "mathgenerator.geometry", "qualname": "area_of_circle_given_center_and_point", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nArea of circle with radius $29=$ \n$2642.08$ \nArea of Circle given center and a point on circle
\n\n\n\n
\n", "signature": "(max_coordinate=10, max_radius=10):", "funcdef": "def"}, "mathgenerator.geometry.area_of_triangle": {"fullname": "mathgenerator.geometry.area_of_triangle", "modulename": "mathgenerator.geometry", "qualname": "area_of_triangle", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nArea of circle with center $(7,-6)$ and passing through $(1.0, -6.0)$ is \n$113.1$ \nArea of Triangle
\n\n\n\n
\n", "signature": "(max_a=20, max_b=20):", "funcdef": "def"}, "mathgenerator.geometry.basic_trigonometry": {"fullname": "mathgenerator.geometry.basic_trigonometry", "modulename": "mathgenerator.geometry", "qualname": "basic_trigonometry", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nArea of triangle with side lengths: $8, 1, 8 = $ \n$3.99$ \nTrigonometric Values
\n\n\n\n
\n", "signature": "(angles=[0, 30, 45, 60, 90], functions=['sin', 'cos', 'tan']):", "funcdef": "def"}, "mathgenerator.geometry.circumference": {"fullname": "mathgenerator.geometry.circumference", "modulename": "mathgenerator.geometry", "qualname": "circumference", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n$\\sin(30) = $ \n$\\frac{1}{2}$ \nCircumference of Circle
\n\n\n\n
\n", "signature": "(max_radius=100):", "funcdef": "def"}, "mathgenerator.geometry.complementary_and_supplementary_angle": {"fullname": "mathgenerator.geometry.complementary_and_supplementary_angle", "modulename": "mathgenerator.geometry", "qualname": "complementary_and_supplementary_angle", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nCircumference of circle with radius $56 = $ \n$351.86$ \nComplementary and Supplementary Angle
\n\n\n\n
\n", "signature": "(max_supp=180, max_comp=90):", "funcdef": "def"}, "mathgenerator.geometry.curved_surface_area_cylinder": {"fullname": "mathgenerator.geometry.curved_surface_area_cylinder", "modulename": "mathgenerator.geometry", "qualname": "curved_surface_area_cylinder", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nThe complementary angle of $15 =$ \n$75$ \nCurved surface area of a cylinder
\n\n\n\n
\n", "signature": "(max_radius=49, max_height=99):", "funcdef": "def"}, "mathgenerator.geometry.degree_to_rad": {"fullname": "mathgenerator.geometry.degree_to_rad", "modulename": "mathgenerator.geometry", "qualname": "degree_to_rad", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nWhat is the curved surface area of a cylinder of radius, $44$ and height, $92$? \n$25434.33$ \nDegrees to Radians
\n\n\n\n
\n", "signature": "(max_deg=360):", "funcdef": "def"}, "mathgenerator.geometry.equation_of_line_from_two_points": {"fullname": "mathgenerator.geometry.equation_of_line_from_two_points", "modulename": "mathgenerator.geometry", "qualname": "equation_of_line_from_two_points", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nAngle $113$ degrees in radians is: \n$1.97$ \nEquation of line from two points
\n\n\n\n
\n", "signature": "(max_coordinate=20, min_coordinate=-20):", "funcdef": "def"}, "mathgenerator.geometry.fourth_angle_of_quadrilateral": {"fullname": "mathgenerator.geometry.fourth_angle_of_quadrilateral", "modulename": "mathgenerator.geometry", "qualname": "fourth_angle_of_quadrilateral", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nWhat is the equation of the line between points $(13,9)$ and $(6,-19)$ in slope-intercept form? \n$y = 4x -43$ \nFourth Angle of Quadrilateral
\n\n\n\n
\n", "signature": "(max_angle=180):", "funcdef": "def"}, "mathgenerator.geometry.perimeter_of_polygons": {"fullname": "mathgenerator.geometry.perimeter_of_polygons", "modulename": "mathgenerator.geometry", "qualname": "perimeter_of_polygons", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nFourth angle of quadrilateral with angles $162 , 43, 78 =$ \n$77$ \nPerimeter of Polygons
\n\n\n\n
\n", "signature": "(max_sides=12, max_length=120):", "funcdef": "def"}, "mathgenerator.geometry.pythagorean_theorem": {"fullname": "mathgenerator.geometry.pythagorean_theorem", "modulename": "mathgenerator.geometry", "qualname": "pythagorean_theorem", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nThe perimeter of a $4$ sided polygon with lengths of $30, 105, 78, 106$cm is: \n$319$ \nPythagorean Theorem
\n\n\n\n
\n", "signature": "(max_length=20):", "funcdef": "def"}, "mathgenerator.geometry.radian_to_deg": {"fullname": "mathgenerator.geometry.radian_to_deg", "modulename": "mathgenerator.geometry", "qualname": "radian_to_deg", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nWhat is the hypotenuse of a right triangle given the other two sides have lengths $9$ and $10$? \n$13.45$ \nRadians to Degrees
\n", "signature": "(max_rad=6.28):", "funcdef": "def"}, "mathgenerator.geometry.sector_area": {"fullname": "mathgenerator.geometry.sector_area", "modulename": "mathgenerator.geometry", "qualname": "sector_area", "kind": "function", "doc": "Area of a Sector
\n\n\n\n
\n", "signature": "(max_radius=49, max_angle=359):", "funcdef": "def"}, "mathgenerator.geometry.sum_of_polygon_angles": {"fullname": "mathgenerator.geometry.sum_of_polygon_angles", "modulename": "mathgenerator.geometry", "qualname": "sum_of_polygon_angles", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nWhat is the area of a sector with radius $42$ and angle $83$ degrees? \n$1277.69$ \nSum of Angles of Polygon
\n\n\n\n
\n", "signature": "(max_sides=12):", "funcdef": "def"}, "mathgenerator.geometry.surface_area_cone": {"fullname": "mathgenerator.geometry.surface_area_cone", "modulename": "mathgenerator.geometry", "qualname": "surface_area_cone", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nWhat is the sum of interior angles of a polygon with $8$ sides? \n$1080$ \nSurface area of a cone
\n\n\n\n
\n", "signature": "(max_radius=20, max_height=50, unit='m'):", "funcdef": "def"}, "mathgenerator.geometry.surface_area_cube": {"fullname": "mathgenerator.geometry.surface_area_cube", "modulename": "mathgenerator.geometry", "qualname": "surface_area_cube", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nSurface area of cone with height $= 26m$ and radius $= 6m$ is \n$616 m^2$ \nSurface area of a cube
\n\n\n\n
\n", "signature": "(max_side=20, unit='m'):", "funcdef": "def"}, "mathgenerator.geometry.surface_area_cuboid": {"fullname": "mathgenerator.geometry.surface_area_cuboid", "modulename": "mathgenerator.geometry", "qualname": "surface_area_cuboid", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nSurface area of cube with side $= 6m$ is \n$216 m^2$ \nSurface area of a cuboid
\n\n\n\n
\n", "signature": "(max_side=20, unit='m'):", "funcdef": "def"}, "mathgenerator.geometry.surface_area_cylinder": {"fullname": "mathgenerator.geometry.surface_area_cylinder", "modulename": "mathgenerator.geometry", "qualname": "surface_area_cylinder", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nSurface area of cuboid with sides of lengths: $11m, 20m, 8m$ is \n$936 m^2$ \nSurface area of a cylinder
\n\n\n\n
\n", "signature": "(max_radius=20, max_height=50, unit='m'):", "funcdef": "def"}, "mathgenerator.geometry.surface_area_pyramid": {"fullname": "mathgenerator.geometry.surface_area_pyramid", "modulename": "mathgenerator.geometry", "qualname": "surface_area_pyramid", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nSurface area of cylinder with height $= 26m$ and radius $= 15m$ is \n$3864 m^2$ \nSurface area of a pyramid
\n\n\n\n
\n", "signature": "(unit='m'):", "funcdef": "def"}, "mathgenerator.geometry.surface_area_sphere": {"fullname": "mathgenerator.geometry.surface_area_sphere", "modulename": "mathgenerator.geometry", "qualname": "surface_area_sphere", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nSurface area of pyramid with base length $= 30m$, base width $= 40m$, and height $= 25m$ is \n$2400 m^2$ \nSurface area of a sphere
\n\n\n\n
\n", "signature": "(max_side=20, unit='m'):", "funcdef": "def"}, "mathgenerator.geometry.third_angle_of_triangle": {"fullname": "mathgenerator.geometry.third_angle_of_triangle", "modulename": "mathgenerator.geometry", "qualname": "third_angle_of_triangle", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nSurface area of a sphere with radius $= 8m$ is \n$804.25 m^2$ \nThird Angle of Triangle
\n\n\n\n
\n", "signature": "(max_angle=89):", "funcdef": "def"}, "mathgenerator.geometry.valid_triangle": {"fullname": "mathgenerator.geometry.valid_triangle", "modulename": "mathgenerator.geometry", "qualname": "valid_triangle", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nThird angle of triangle with angles $10$ and $22 =$ \n$148$ \nValid Triangle
\n\n\n\n
\n", "signature": "(max_side_length=50):", "funcdef": "def"}, "mathgenerator.geometry.volume_cone": {"fullname": "mathgenerator.geometry.volume_cone", "modulename": "mathgenerator.geometry", "qualname": "volume_cone", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nDoes triangel with sides $10, 31$ and $14$ exist? \nNo \nVolume of a cone
\n\n\n\n
\n", "signature": "(max_radius=20, max_height=50, unit='m'):", "funcdef": "def"}, "mathgenerator.geometry.volume_cube": {"fullname": "mathgenerator.geometry.volume_cube", "modulename": "mathgenerator.geometry", "qualname": "volume_cube", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nVolume of cone with height $= 44m$ and radius $= 11m$ is \n$5575 m^3$ \nVolume of a cube\n| Ex. Problem | Ex. Solution |\n| --- | --- |\n| Volume of a cube with a side length of $19m$ is | $6859 m^3$ |
\n", "signature": "(max_side=20, unit='m'):", "funcdef": "def"}, "mathgenerator.geometry.volume_cuboid": {"fullname": "mathgenerator.geometry.volume_cuboid", "modulename": "mathgenerator.geometry", "qualname": "volume_cuboid", "kind": "function", "doc": "Volume of a cuboid
\n\n\n\n
\n", "signature": "(max_side=20, unit='m'):", "funcdef": "def"}, "mathgenerator.geometry.volume_cylinder": {"fullname": "mathgenerator.geometry.volume_cylinder", "modulename": "mathgenerator.geometry", "qualname": "volume_cylinder", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nVolume of cuboid with sides = $17m, 11m, 13m$ is \n$2431 m^3$ \nVolume of a cylinder
\n\n\n\n
\n", "signature": "(max_radius=20, max_height=50, unit='m'):", "funcdef": "def"}, "mathgenerator.geometry.volume_cone_frustum": {"fullname": "mathgenerator.geometry.volume_cone_frustum", "modulename": "mathgenerator.geometry", "qualname": "volume_cone_frustum", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nVolume of cylinder with height $= 3m$ and radius $= 10m$ is \n$942 m^3$ \nVolume of the frustum of a cone
\n\n\n\n
\n", "signature": "(max_r1=20, max_r2=20, max_height=50, unit='m'):", "funcdef": "def"}, "mathgenerator.geometry.volume_hemisphere": {"fullname": "mathgenerator.geometry.volume_hemisphere", "modulename": "mathgenerator.geometry", "qualname": "volume_hemisphere", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nVolume of frustum with height $= 30m$ and $r1 = 20m$ is and $r2 = 8m$ is \n$19603.54 m^3$ \nVolume of a hemisphere
\n\n\n\n
\n", "signature": "(max_radius=100):", "funcdef": "def"}, "mathgenerator.geometry.volume_pyramid": {"fullname": "mathgenerator.geometry.volume_pyramid", "modulename": "mathgenerator.geometry", "qualname": "volume_pyramid", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nVolume of hemisphere with radius $32m =$ \n$68629.14 m^3$ \nVolume of a pyramid
\n\n\n\n
\n", "signature": "(max_length=20, max_width=20, max_height=50, unit='m'):", "funcdef": "def"}, "mathgenerator.geometry.volume_sphere": {"fullname": "mathgenerator.geometry.volume_sphere", "modulename": "mathgenerator.geometry", "qualname": "volume_sphere", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nVolume of pyramid with base length $= 7 m$, base width $= 18 m$ and height $= 42 m$ is \n$1764.0 m^3$ \nVolume of a sphere
\n\n\n\n
\n", "signature": "(max_radius=100):", "funcdef": "def"}, "mathgenerator.misc": {"fullname": "mathgenerator.misc", "modulename": "mathgenerator.misc", "kind": "module", "doc": "\n"}, "mathgenerator.misc.arithmetic_progression_sum": {"fullname": "mathgenerator.misc.arithmetic_progression_sum", "modulename": "mathgenerator.misc", "qualname": "arithmetic_progression_sum", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nVolume of sphere with radius $30 m = $ \n$113097.36 m^3$ \nArithmetic Progression Sum
\n\n\n\n
\n", "signature": "(max_d=100, max_a=100, max_n=100):", "funcdef": "def"}, "mathgenerator.misc.arithmetic_progression_term": {"fullname": "mathgenerator.misc.arithmetic_progression_term", "modulename": "mathgenerator.misc", "qualname": "arithmetic_progression_term", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nFind the sum of first $44$ terms of the AP series: $49, 145, 241 ... $ \n$92972.0$ \nArithmetic Progression Term
\n\n\n\n
\n", "signature": "(max_d=100, max_a=100, max_n=100):", "funcdef": "def"}, "mathgenerator.misc.base_conversion": {"fullname": "mathgenerator.misc.base_conversion", "modulename": "mathgenerator.misc", "qualname": "base_conversion", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nFind term number $12$ of the AP series: $-54, 24, 102 ... $ \n$804$ \nBase Conversion
\n\n\n\n
\n", "signature": "(max_num=60000, max_base=16):", "funcdef": "def"}, "mathgenerator.misc.binomial_distribution": {"fullname": "mathgenerator.misc.binomial_distribution", "modulename": "mathgenerator.misc", "qualname": "binomial_distribution", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nConvert $45204$ from base $10$ to base $4$ \n$23002110$ \nBinomial distribution
\n\n\n\n
\n", "signature": "():", "funcdef": "def"}, "mathgenerator.misc.celsius_to_fahrenheit": {"fullname": "mathgenerator.misc.celsius_to_fahrenheit", "modulename": "mathgenerator.misc", "qualname": "celsius_to_fahrenheit", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nA manufacturer of metal pistons finds that, on average, $30.56$% of the pistons they manufacture are rejected because they are incorrectly sized. What is the probability that a batch of $20$ pistons will contain no more than $2$ rejected pistons? \n$3.17$ \nCelsius to Fahrenheit
\n\n\n\n
\n", "signature": "(max_temp=100):", "funcdef": "def"}, "mathgenerator.misc.common_factors": {"fullname": "mathgenerator.misc.common_factors", "modulename": "mathgenerator.misc", "qualname": "common_factors", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nConvert $-46$ degrees Celsius to degrees Fahrenheit \n$-50.8$ \nCommon Factors
\n\n\n\n
\n", "signature": "(max_val=100):", "funcdef": "def"}, "mathgenerator.misc.complex_to_polar": {"fullname": "mathgenerator.misc.complex_to_polar", "modulename": "mathgenerator.misc", "qualname": "complex_to_polar", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nCommon Factors of $100$ and $44 = $ \n$[1, 2, 4]$ \nComplex to polar form
\n\n\n\n
\n", "signature": "(min_real_imaginary_num=-20, max_real_imaginary_num=20):", "funcdef": "def"}, "mathgenerator.misc.decimal_to_roman_numerals": {"fullname": "mathgenerator.misc.decimal_to_roman_numerals", "modulename": "mathgenerator.misc", "qualname": "decimal_to_roman_numerals", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\n$19.42(-19.0\\theta + i-4.0\\theta)$ \n$-2.93$ \nDecimal to Roman Numerals
\n\n\n\n
\n", "signature": "(max_decimal=4000):", "funcdef": "def"}, "mathgenerator.misc.euclidian_norm": {"fullname": "mathgenerator.misc.euclidian_norm", "modulename": "mathgenerator.misc", "qualname": "euclidian_norm", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nThe number $92$ in roman numerals is: \n$XCII$ \nEuclidian norm or L2 norm of a vector
\n\n\n\n
\n", "signature": "(maxEltAmt=20):", "funcdef": "def"}, "mathgenerator.misc.factors": {"fullname": "mathgenerator.misc.factors", "modulename": "mathgenerator.misc", "qualname": "factors", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nEuclidian norm or L2 norm of the vector $[659.9225071540442, 243.40887829281564, 128.79950053874424, 263.19226900031344]$ is: \n$761.97$ \nFactors of a number
\n\n\n\n
\n", "signature": "(max_val=1000):", "funcdef": "def"}, "mathgenerator.misc.geometric_mean": {"fullname": "mathgenerator.misc.geometric_mean", "modulename": "mathgenerator.misc", "qualname": "geometric_mean", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nFactors of $176 = $ \n$[1, 2, 4, 8, 11, 16, 22, 44, 88, 176]$ \nGeometric Mean of N Numbers
\n\n\n\n
\n", "signature": "(max_value=100, max_count=4):", "funcdef": "def"}, "mathgenerator.misc.geometric_progression": {"fullname": "mathgenerator.misc.geometric_progression", "modulename": "mathgenerator.misc", "qualname": "geometric_progression", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nGeometric mean of $3$ numbers $[72, 21, 87] = $ \n$50.86$ \nGeometric Progression
\n\n\n\n
\n", "signature": "(number_values=6, min_value=2, max_value=12, n_term=7, sum_term=5):", "funcdef": "def"}, "mathgenerator.misc.harmonic_mean": {"fullname": "mathgenerator.misc.harmonic_mean", "modulename": "mathgenerator.misc", "qualname": "harmonic_mean", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nFor the given GP $[11, 44, 176, 704, 2816, 11264]$. Find the value of a common ratio, 7th term value, sum upto 10th term \nThe value of a is $11$, common ratio is $4$ , 7th term is $45056$, sum upto 10th term is $3844775.0$ \nHarmonic Mean of N Numbers
\n\n\n\n
\n", "signature": "(max_value=100, max_count=4):", "funcdef": "def"}, "mathgenerator.misc.is_leap_year": {"fullname": "mathgenerator.misc.is_leap_year", "modulename": "mathgenerator.misc", "qualname": "is_leap_year", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nHarmonic mean of $4$ numbers $52, 56, 25, 57 = $ \n$602.33$ \nIs Leap Year or Not
\n\n\n\n
\n", "signature": "(minNumber=1900, max_number=2099):", "funcdef": "def"}, "mathgenerator.misc.lcm": {"fullname": "mathgenerator.misc.lcm", "modulename": "mathgenerator.misc", "qualname": "lcm", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nIs $2000$ a leap year? \n$2000$ is a leap year \nLCM (Least Common Multiple)
\n\n\n\n
\n", "signature": "(max_val=20):", "funcdef": "def"}, "mathgenerator.misc.minutes_to_hours": {"fullname": "mathgenerator.misc.minutes_to_hours", "modulename": "mathgenerator.misc", "qualname": "minutes_to_hours", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nLCM of $3$ and $18 = $ \n$18$ \nConvert minutes to hours and minutes
\n\n\n\n
\n", "signature": "(max_minutes=999):", "funcdef": "def"}, "mathgenerator.misc.prime_factors": {"fullname": "mathgenerator.misc.prime_factors", "modulename": "mathgenerator.misc", "qualname": "prime_factors", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nConvert $836$ minutes to hours & minutes \n$13$ hours and $56$ minutes \nPrime Factors
\n\n\n\n
\n", "signature": "(min_val=1, max_val=200):", "funcdef": "def"}, "mathgenerator.misc.product_of_scientific_notations": {"fullname": "mathgenerator.misc.product_of_scientific_notations", "modulename": "mathgenerator.misc", "qualname": "product_of_scientific_notations", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nFind prime factors of $30$ \n$2, 3, 5$ \nProduct of scientific notations
\n\n\n\n
\n", "signature": "(min_exp_val=-100, max_exp_val=100):", "funcdef": "def"}, "mathgenerator.misc.profit_loss_percent": {"fullname": "mathgenerator.misc.profit_loss_percent", "modulename": "mathgenerator.misc", "qualname": "profit_loss_percent", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nProduct of scientific notations $5.11 \\times 10^{67}$ and $3.64 \\times 10^{-59} = $ \n$1.86 \\times 10^{9}$ \nProfit or Loss Percent
\n\n\n\n
\n", "signature": "(max_cp=1000, max_sp=1000):", "funcdef": "def"}, "mathgenerator.misc.quotient_of_power_same_base": {"fullname": "mathgenerator.misc.quotient_of_power_same_base", "modulename": "mathgenerator.misc", "qualname": "quotient_of_power_same_base", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nLoss percent when $CP = 751$ and $SP = 290$ is: \n$61.38$ \nQuotient of Powers with Same Base
\n\n\n\n
\n", "signature": "(max_base=50, max_power=10):", "funcdef": "def"}, "mathgenerator.misc.quotient_of_power_same_power": {"fullname": "mathgenerator.misc.quotient_of_power_same_power", "modulename": "mathgenerator.misc", "qualname": "quotient_of_power_same_power", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nThe Quotient of $5^{6}$ and $5^{8} = $5^{6-8} = 5^{-2}$ \n$0.04$ \nQuotient of Powers with Same Power
\n\n\n\n
\n", "signature": "(max_base=50, max_power=10):", "funcdef": "def"}, "mathgenerator.misc.set_operation": {"fullname": "mathgenerator.misc.set_operation", "modulename": "mathgenerator.misc", "qualname": "set_operation", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nThe quotient of $19^{8}$ and $10^{8} = (19/10)^8 = 1.9^{8}$ \n$169.84$ \nUnion, Intersection, Difference of Two Sets
\n\n\n\n
\n", "signature": "(min_size=3, max_size=7):", "funcdef": "def"}, "mathgenerator.misc.signum_function": {"fullname": "mathgenerator.misc.signum_function", "modulename": "mathgenerator.misc", "qualname": "signum_function", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nGiven the two sets $a={1, 2, 4, 5}$, $b={8, 1, 2}. Find the Union, intersection, a-b, b-a, and symmetric difference \nUnion is ${1, 2, 4, 5, 8}$. Intersection is ${1, 2}$, a-b is ${4, 5}$, b-a is ${8}$. Symmetric difference is ${4, 5, 8}$. \nSignum Function
\n\n\n\n
\n", "signature": "(min=-999, max=999):", "funcdef": "def"}, "mathgenerator.misc.surds_comparison": {"fullname": "mathgenerator.misc.surds_comparison", "modulename": "mathgenerator.misc", "qualname": "surds_comparison", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nSignum of $-229$ is = \n$-1$ \nComparing Surds
\n\n\n\n
\n", "signature": "(max_value=100, max_root=10):", "funcdef": "def"}, "mathgenerator.statistics": {"fullname": "mathgenerator.statistics", "modulename": "mathgenerator.statistics", "kind": "module", "doc": "\n"}, "mathgenerator.statistics.combinations": {"fullname": "mathgenerator.statistics.combinations", "modulename": "mathgenerator.statistics", "qualname": "combinations", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nFill in the blanks $42^{\\frac{1}{2}}$ _ $45^{\\frac{1}{5}}$ \n$>$ \nCombinations of Objects
\n\n\n\n
\n", "signature": "(max_lengthgth=20):", "funcdef": "def"}, "mathgenerator.statistics.conditional_probability": {"fullname": "mathgenerator.statistics.conditional_probability", "modulename": "mathgenerator.statistics", "qualname": "conditional_probability", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nFind the number of combinations from $19$ objects picked $6$ at a time. \n$27132$ \nConditional Probability
\n\n\n\n
\n", "signature": "():", "funcdef": "def"}, "mathgenerator.statistics.confidence_interval": {"fullname": "mathgenerator.statistics.confidence_interval", "modulename": "mathgenerator.statistics", "qualname": "confidence_interval", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nSomeone tested positive for a nasty disease which only $1.18$% of the population have. Test sensitivity (true positive) is equal to $SN=98.73$% whereas test specificity (true negative) $SP=99.99$%. What is the probability that this guy really has that disease? \n$99.16$% \nConfidence interval For sample S
\n\n\n\n
\n", "signature": "():", "funcdef": "def"}, "mathgenerator.statistics.data_summary": {"fullname": "mathgenerator.statistics.data_summary", "modulename": "mathgenerator.statistics", "qualname": "data_summary", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nThe confidence interval for sample $[234, 223, 210, 203, 258, 299, 281, 208, 278, 252, 295, 245, 280, 235, 219, 297, 214, 267, 212, 256, 232, 221]$ with $99$% confidence is \n$(263.31, 229.33)$ \nMean, Standard Deviation and Variance
\n\n\n\n
\n", "signature": "(number_values=15, min_val=5, max_val=50):", "funcdef": "def"}, "mathgenerator.statistics.dice_sum_probability": {"fullname": "mathgenerator.statistics.dice_sum_probability", "modulename": "mathgenerator.statistics", "qualname": "dice_sum_probability", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nFind the mean,standard deviation and variance for the data $9, 29, 46, 27, 46, 15, 10, 44, 19, 33, 38, 7, 34, 28, 8$ \nThe Mean is $26.2$, Standard Deviation is $186.29$, Variance is $13.65$ \nProbability of a certain sum appearing on faces of dice
\n\n\n\n
\n", "signature": "(max_dice=3):", "funcdef": "def"}, "mathgenerator.statistics.mean_median": {"fullname": "mathgenerator.statistics.mean_median", "modulename": "mathgenerator.statistics", "qualname": "mean_median", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nIf $2$ dice are rolled at the same time, the probability of getting a sum of $5 =$ \n$\frac{4}{36}$ \nMean and Median
\n\n\n\n
\n", "signature": "(max_length=10):", "funcdef": "def"}, "mathgenerator.statistics.permutation": {"fullname": "mathgenerator.statistics.permutation", "modulename": "mathgenerator.statistics", "qualname": "permutation", "kind": "function", "doc": "\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nGiven the series of numbers $[4, 19, 21, 22, 43, 44, 60, 81, 87, 92]$. Find the arithmatic mean and median of the series \nArithmetic mean of the series is $47.3$ and arithmetic median of this series is $43.5$ \nPermutations
\n\n\n\n
\n", "signature": "(max_lengthgth=20):", "funcdef": "def"}}, "docInfo": {"mathgenerator": {"qualname": 0, "fullname": 1, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 563}, "mathgenerator.get_gen_list": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "mathgenerator.gen_by_id": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 25, "bases": 0, "doc": 3}, "mathgenerator.getGenList": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}, "mathgenerator.genById": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 25, "bases": 0, "doc": 3}, "mathgenerator.algebra": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "mathgenerator.algebra.basic_algebra": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 41}, "mathgenerator.algebra.combine_like_terms": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 51}, "mathgenerator.algebra.complex_quadratic": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 65}, "mathgenerator.algebra.compound_interest": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 62}, "mathgenerator.algebra.distance_two_points": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 30, "bases": 0, "doc": 52}, "mathgenerator.algebra.expanding": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 50, "bases": 0, "doc": 44}, "mathgenerator.algebra.factoring": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 66}, "mathgenerator.algebra.int_matrix_22_determinant": {"qualname": 4, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 18, "bases": 0, "doc": 50}, "mathgenerator.algebra.intersection_of_two_lines": {"qualname": 4, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 78, "bases": 0, "doc": 61}, "mathgenerator.algebra.invert_matrix": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 48, "bases": 0, "doc": 78}, "mathgenerator.algebra.linear_equations": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 38, "bases": 0, "doc": 58}, "mathgenerator.algebra.line_equation_from_2_points": {"qualname": 5, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 62}, "mathgenerator.algebra.log": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 40}, "mathgenerator.algebra.matrix_multiplication": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 166}, "mathgenerator.algebra.midpoint_of_two_points": {"qualname": 4, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 56}, "mathgenerator.algebra.multiply_complex_numbers": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 32, "bases": 0, "doc": 47}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"qualname": 5, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 60}, "mathgenerator.algebra.quadratic_equation": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 51}, "mathgenerator.algebra.simple_interest": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 62}, "mathgenerator.algebra.system_of_equations": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 40, "bases": 0, "doc": 62}, "mathgenerator.algebra.vector_cross": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 52}, "mathgenerator.algebra.vector_dot": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 48}, "mathgenerator.basic_math": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "mathgenerator.basic_math.absolute_difference": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 49}, "mathgenerator.basic_math.addition": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 41}, "mathgenerator.basic_math.compare_fractions": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 48}, "mathgenerator.basic_math.cube_root": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 49}, "mathgenerator.basic_math.divide_fractions": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 39}, "mathgenerator.basic_math.division": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 38}, "mathgenerator.basic_math.exponentiation": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 38}, "mathgenerator.basic_math.factorial": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 38}, "mathgenerator.basic_math.fraction_multiplication": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 39}, "mathgenerator.basic_math.fraction_to_decimal": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 41}, "mathgenerator.basic_math.greatest_common_divisor": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 49}, "mathgenerator.basic_math.is_composite": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 40}, "mathgenerator.basic_math.is_prime": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 40}, "mathgenerator.basic_math.multiplication": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 38}, "mathgenerator.basic_math.percentage": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 45}, "mathgenerator.basic_math.percentage_difference": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 50}, "mathgenerator.basic_math.percentage_error": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 53}, "mathgenerator.basic_math.power_of_powers": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 40}, "mathgenerator.basic_math.square": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 18, "bases": 0, "doc": 38}, "mathgenerator.basic_math.square_root": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 39}, "mathgenerator.basic_math.simplify_square_root": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 39}, "mathgenerator.basic_math.subtraction": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 42}, "mathgenerator.calculus": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "mathgenerator.calculus.definite_integral": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 58}, "mathgenerator.calculus.power_rule_differentiation": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 48}, "mathgenerator.calculus.power_rule_integration": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 50}, "mathgenerator.calculus.stationary_points": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 53}, "mathgenerator.calculus.trig_differentiation": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 43}, "mathgenerator.computer_science": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "mathgenerator.computer_science.bcd_to_decimal": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 47}, "mathgenerator.computer_science.binary_2s_complement": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 45}, "mathgenerator.computer_science.binary_complement_1s": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 40}, "mathgenerator.computer_science.binary_to_decimal": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 39}, "mathgenerator.computer_science.binary_to_hex": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 39}, "mathgenerator.computer_science.decimal_to_bcd": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 46}, "mathgenerator.computer_science.decimal_to_binary": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 42}, "mathgenerator.computer_science.decimal_to_hexadeci": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 42}, "mathgenerator.computer_science.decimal_to_octal": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 45}, "mathgenerator.computer_science.fibonacci_series": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 55}, "mathgenerator.computer_science.modulo_division": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 41}, "mathgenerator.computer_science.nth_fibonacci_number": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 44}, "mathgenerator.geometry": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "mathgenerator.geometry.angle_btw_vectors": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 18, "bases": 0, "doc": 123}, "mathgenerator.geometry.angle_regular_polygon": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 51}, "mathgenerator.geometry.arc_length": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 60}, "mathgenerator.geometry.area_of_circle": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 46}, "mathgenerator.geometry.area_of_circle_given_center_and_point": {"qualname": 7, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 65}, "mathgenerator.geometry.area_of_triangle": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 49}, "mathgenerator.geometry.basic_trigonometry": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 82, "bases": 0, "doc": 40}, "mathgenerator.geometry.circumference": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 46}, "mathgenerator.geometry.complementary_and_supplementary_angle": {"qualname": 4, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 45}, "mathgenerator.geometry.curved_surface_area_cylinder": {"qualname": 4, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 57}, "mathgenerator.geometry.degree_to_rad": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 45}, "mathgenerator.geometry.equation_of_line_from_two_points": {"qualname": 6, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 65}, "mathgenerator.geometry.fourth_angle_of_quadrilateral": {"qualname": 4, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 49}, "mathgenerator.geometry.perimeter_of_polygons": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 53}, "mathgenerator.geometry.pythagorean_theorem": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 56}, "mathgenerator.geometry.radian_to_deg": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 18, "bases": 0, "doc": 5}, "mathgenerator.geometry.sector_area": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 54}, "mathgenerator.geometry.sum_of_polygon_angles": {"qualname": 4, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 53}, "mathgenerator.geometry.surface_area_cone": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 42, "bases": 0, "doc": 54}, "mathgenerator.geometry.surface_area_cube": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 31, "bases": 0, "doc": 50}, "mathgenerator.geometry.surface_area_cuboid": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 31, "bases": 0, "doc": 53}, "mathgenerator.geometry.surface_area_cylinder": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 42, "bases": 0, "doc": 54}, "mathgenerator.geometry.surface_area_pyramid": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 20, "bases": 0, "doc": 59}, "mathgenerator.geometry.surface_area_sphere": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 31, "bases": 0, "doc": 52}, "mathgenerator.geometry.third_angle_of_triangle": {"qualname": 4, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 49}, "mathgenerator.geometry.valid_triangle": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 18, "bases": 0, "doc": 46}, "mathgenerator.geometry.volume_cone": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 42, "bases": 0, "doc": 52}, "mathgenerator.geometry.volume_cube": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 31, "bases": 0, "doc": 32}, "mathgenerator.geometry.volume_cuboid": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 31, "bases": 0, "doc": 49}, "mathgenerator.geometry.volume_cylinder": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 42, "bases": 0, "doc": 52}, "mathgenerator.geometry.volume_cone_frustum": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 53, "bases": 0, "doc": 59}, "mathgenerator.geometry.volume_hemisphere": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 48}, "mathgenerator.geometry.volume_pyramid": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 53, "bases": 0, "doc": 61}, "mathgenerator.geometry.volume_sphere": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 49}, "mathgenerator.misc": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "mathgenerator.misc.arithmetic_progression_sum": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 54}, "mathgenerator.misc.arithmetic_progression_term": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 51}, "mathgenerator.misc.base_conversion": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 45}, "mathgenerator.misc.binomial_distribution": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 79}, "mathgenerator.misc.celsius_to_fahrenheit": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 48}, "mathgenerator.misc.common_factors": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 46}, "mathgenerator.misc.complex_to_polar": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 32, "bases": 0, "doc": 50}, "mathgenerator.misc.decimal_to_roman_numerals": {"qualname": 4, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 46}, "mathgenerator.misc.euclidian_norm": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 61}, "mathgenerator.misc.factors": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 52}, "mathgenerator.misc.geometric_mean": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 50}, "mathgenerator.misc.geometric_progression": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 61, "bases": 0, "doc": 81}, "mathgenerator.misc.harmonic_mean": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 51}, "mathgenerator.misc.is_leap_year": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 27, "bases": 0, "doc": 49}, "mathgenerator.misc.lcm": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 46}, "mathgenerator.misc.minutes_to_hours": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 52}, "mathgenerator.misc.prime_factors": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 44}, "mathgenerator.misc.product_of_scientific_notations": {"qualname": 4, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 30, "bases": 0, "doc": 57}, "mathgenerator.misc.profit_loss_percent": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 49}, "mathgenerator.misc.quotient_of_power_same_base": {"qualname": 5, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 52}, "mathgenerator.misc.quotient_of_power_same_power": {"qualname": 5, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 52}, "mathgenerator.misc.set_operation": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 91}, "mathgenerator.misc.signum_function": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 26, "bases": 0, "doc": 44}, "mathgenerator.misc.surds_comparison": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 45}, "mathgenerator.statistics": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "mathgenerator.statistics.combinations": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 52}, "mathgenerator.statistics.conditional_probability": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 82}, "mathgenerator.statistics.confidence_interval": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 76}, "mathgenerator.statistics.data_summary": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 78}, "mathgenerator.statistics.dice_sum_probability": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 64}, "mathgenerator.statistics.mean_median": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 78}, "mathgenerator.statistics.permutation": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 17, "bases": 0, "doc": 48}}, "length": 138, "save": true}, "index": {"qualname": {"root": {"1": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.computer_science.binary_complement_1s": {"tf": 1}}, "df": 1}}, "2": {"2": {"docs": {"mathgenerator.algebra.int_matrix_22_determinant": {"tf": 1}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1}}, "df": 2}, "docs": {"mathgenerator.algebra.line_equation_from_2_points": {"tf": 1}}, "df": 1, "s": {"docs": {"mathgenerator.computer_science.binary_2s_complement": {"tf": 1}}, "df": 1}}, "docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.get_gen_list": {"tf": 1}}, "df": 1, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.getGenList": {"tf": 1}}, "df": 1}}}}}}}}, "n": {"docs": {"mathgenerator.get_gen_list": {"tf": 1}, "mathgenerator.gen_by_id": {"tf": 1}}, "df": 2, "b": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.genById": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"mathgenerator.misc.geometric_mean": {"tf": 1}, "mathgenerator.misc.geometric_progression": {"tf": 1}}, "df": 2}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.basic_math.greatest_common_divisor": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.get_gen_list": {"tf": 1}}, "df": 1}}, "k": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.algebra.combine_like_terms": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.algebra.line_equation_from_2_points": {"tf": 1}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}}, "df": 2, "s": {"docs": {"mathgenerator.algebra.intersection_of_two_lines": {"tf": 1}}, "df": 1}, "a": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.algebra.linear_equations": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "g": {"docs": {"mathgenerator.algebra.log": {"tf": 1}}, "df": 1}, "s": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.misc.profit_loss_percent": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"mathgenerator.geometry.arc_length": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {"mathgenerator.misc.is_leap_year": {"tf": 1}}, "df": 1}}}, "c": {"docs": {}, "df": 0, "m": {"docs": {"mathgenerator.misc.lcm": {"tf": 1}}, "df": 1}}}, "b": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.gen_by_id": {"tf": 1}}, "df": 1}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"mathgenerator.algebra.basic_algebra": {"tf": 1}, "mathgenerator.geometry.basic_trigonometry": {"tf": 1}}, "df": 2}}, "e": {"docs": {"mathgenerator.misc.base_conversion": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_base": {"tf": 1}}, "df": 2}}}, "c": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.computer_science.bcd_to_decimal": {"tf": 1}, "mathgenerator.computer_science.decimal_to_bcd": {"tf": 1}}, "df": 2}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.computer_science.binary_2s_complement": {"tf": 1}, "mathgenerator.computer_science.binary_complement_1s": {"tf": 1}, "mathgenerator.computer_science.binary_to_decimal": {"tf": 1}, "mathgenerator.computer_science.binary_to_hex": {"tf": 1}, "mathgenerator.computer_science.decimal_to_binary": {"tf": 1}}, "df": 5}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator.misc.binomial_distribution": {"tf": 1}}, "df": 1}}}}}}}, "t": {"docs": {}, "df": 0, "w": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.gen_by_id": {"tf": 1}}, "df": 1}, "n": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.algebra.int_matrix_22_determinant": {"tf": 1}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.algebra.compound_interest": {"tf": 1}, "mathgenerator.algebra.simple_interest": {"tf": 1}}, "df": 2}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.algebra.intersection_of_two_lines": {"tf": 1}}, "df": 1}}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator.statistics.confidence_interval": {"tf": 1}}, "df": 1}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator.calculus.definite_integral": {"tf": 1}}, "df": 1}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.calculus.power_rule_integration": {"tf": 1}}, "df": 1}}}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.algebra.invert_matrix": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {"mathgenerator.basic_math.is_composite": {"tf": 1}, "mathgenerator.basic_math.is_prime": {"tf": 1}, "mathgenerator.misc.is_leap_year": {"tf": 1}}, "df": 3}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {"mathgenerator.algebra.basic_algebra": {"tf": 1}}, "df": 1}}}}}}, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.basic_math.absolute_difference": {"tf": 1}}, "df": 1}}}}}}}, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.basic_math.addition": {"tf": 1}}, "df": 1}}}}}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}, "mathgenerator.geometry.angle_regular_polygon": {"tf": 1}, "mathgenerator.geometry.complementary_and_supplementary_angle": {"tf": 1}, "mathgenerator.geometry.fourth_angle_of_quadrilateral": {"tf": 1}, "mathgenerator.geometry.third_angle_of_triangle": {"tf": 1}}, "df": 5, "s": {"docs": {"mathgenerator.geometry.sum_of_polygon_angles": {"tf": 1}}, "df": 1}}}}, "d": {"docs": {"mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1}, "mathgenerator.geometry.complementary_and_supplementary_angle": {"tf": 1}}, "df": 2}}, "r": {"docs": {}, "df": 0, "c": {"docs": {"mathgenerator.geometry.arc_length": {"tf": 1}}, "df": 1}, "e": {"docs": {}, "df": 0, "a": {"docs": {"mathgenerator.geometry.area_of_circle": {"tf": 1}, "mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1}, "mathgenerator.geometry.area_of_triangle": {"tf": 1}, "mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.sector_area": {"tf": 1}, "mathgenerator.geometry.surface_area_cone": {"tf": 1}, "mathgenerator.geometry.surface_area_cube": {"tf": 1}, "mathgenerator.geometry.surface_area_cuboid": {"tf": 1}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.surface_area_pyramid": {"tf": 1}, "mathgenerator.geometry.surface_area_sphere": {"tf": 1}}, "df": 11}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"mathgenerator.misc.arithmetic_progression_sum": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_term": {"tf": 1}}, "df": 2}}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.algebra.combine_like_terms": {"tf": 1}}, "df": 1}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.statistics.combinations": {"tf": 1}}, "df": 1}}}}}}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"mathgenerator.algebra.complex_quadratic": {"tf": 1}, "mathgenerator.algebra.multiply_complex_numbers": {"tf": 1}, "mathgenerator.misc.complex_to_polar": {"tf": 1}}, "df": 3}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.computer_science.binary_2s_complement": {"tf": 1}, "mathgenerator.computer_science.binary_complement_1s": {"tf": 1}}, "df": 2, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.geometry.complementary_and_supplementary_angle": {"tf": 1}}, "df": 1}}}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.algebra.compound_interest": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.basic_math.is_composite": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.basic_math.compare_fractions": {"tf": 1}}, "df": 1}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.misc.surds_comparison": {"tf": 1}}, "df": 1}}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.basic_math.greatest_common_divisor": {"tf": 1}, "mathgenerator.misc.common_factors": {"tf": 1}}, "df": 2}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.surface_area_cone": {"tf": 1}, "mathgenerator.geometry.volume_cone": {"tf": 1}, "mathgenerator.geometry.volume_cone_frustum": {"tf": 1}}, "df": 3}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.misc.base_conversion": {"tf": 1}}, "df": 1}}}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator.statistics.conditional_probability": {"tf": 1}}, "df": 1}}}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.statistics.confidence_interval": {"tf": 1}}, "df": 1}}}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.algebra.vector_cross": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.basic_math.cube_root": {"tf": 1}, "mathgenerator.geometry.surface_area_cube": {"tf": 1}, "mathgenerator.geometry.volume_cube": {"tf": 1}}, "df": 3}, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.geometry.surface_area_cuboid": {"tf": 1}, "mathgenerator.geometry.volume_cuboid": {"tf": 1}}, "df": 2}}}}, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.area_of_circle": {"tf": 1}, "mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1}}, "df": 2}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.circumference": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.misc.celsius_to_fahrenheit": {"tf": 1}}, "df": 1}}}}}}, "y": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.volume_cylinder": {"tf": 1}}, "df": 3}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"mathgenerator.misc.arithmetic_progression_term": {"tf": 1}}, "df": 1, "s": {"docs": {"mathgenerator.algebra.combine_like_terms": {"tf": 1}}, "df": 1}}}}, "w": {"docs": {}, "df": 0, "o": {"docs": {"mathgenerator.algebra.distance_two_points": {"tf": 1}, "mathgenerator.algebra.intersection_of_two_lines": {"tf": 1}, "mathgenerator.algebra.midpoint_of_two_points": {"tf": 1}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}}, "df": 4}}, "o": {"docs": {"mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1}, "mathgenerator.basic_math.fraction_to_decimal": {"tf": 1}, "mathgenerator.computer_science.bcd_to_decimal": {"tf": 1}, "mathgenerator.computer_science.binary_to_decimal": {"tf": 1}, "mathgenerator.computer_science.binary_to_hex": {"tf": 1}, "mathgenerator.computer_science.decimal_to_bcd": {"tf": 1}, "mathgenerator.computer_science.decimal_to_binary": {"tf": 1}, "mathgenerator.computer_science.decimal_to_hexadeci": {"tf": 1}, "mathgenerator.computer_science.decimal_to_octal": {"tf": 1}, "mathgenerator.geometry.degree_to_rad": {"tf": 1}, "mathgenerator.geometry.radian_to_deg": {"tf": 1}, "mathgenerator.misc.celsius_to_fahrenheit": {"tf": 1}, "mathgenerator.misc.complex_to_polar": {"tf": 1}, "mathgenerator.misc.decimal_to_roman_numerals": {"tf": 1}, "mathgenerator.misc.minutes_to_hours": {"tf": 1}}, "df": 15}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"mathgenerator.calculus.trig_differentiation": {"tf": 1}}, "df": 1, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.geometry.basic_trigonometry": {"tf": 1}}, "df": 1}}}}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.area_of_triangle": {"tf": 1}, "mathgenerator.geometry.third_angle_of_triangle": {"tf": 1}, "mathgenerator.geometry.valid_triangle": {"tf": 1}}, "df": 3}}}}}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {"mathgenerator.geometry.pythagorean_theorem": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.geometry.third_angle_of_triangle": {"tf": 1}}, "df": 1}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"mathgenerator.algebra.complex_quadratic": {"tf": 1}, "mathgenerator.algebra.quadratic_equation": {"tf": 1}}, "df": 2}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator.geometry.fourth_angle_of_quadrilateral": {"tf": 1}}, "df": 1}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.misc.quotient_of_power_same_base": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_power": {"tf": 1}}, "df": 2}}}}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.algebra.distance_two_points": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.misc.binomial_distribution": {"tf": 1}}, "df": 1}}}}}}}}}}, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.basic_math.absolute_difference": {"tf": 1}, "mathgenerator.basic_math.percentage_difference": {"tf": 1}}, "df": 2}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.calculus.power_rule_differentiation": {"tf": 1}, "mathgenerator.calculus.trig_differentiation": {"tf": 1}}, "df": 2}}}}}}}}}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.basic_math.divide_fractions": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.basic_math.division": {"tf": 1}, "mathgenerator.computer_science.modulo_division": {"tf": 1}}, "df": 2}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.basic_math.greatest_common_divisor": {"tf": 1}}, "df": 1}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.statistics.dice_sum_probability": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.algebra.int_matrix_22_determinant": {"tf": 1}}, "df": 1}}}}}}}}}, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator.basic_math.fraction_to_decimal": {"tf": 1}, "mathgenerator.computer_science.bcd_to_decimal": {"tf": 1}, "mathgenerator.computer_science.binary_to_decimal": {"tf": 1}, "mathgenerator.computer_science.decimal_to_bcd": {"tf": 1}, "mathgenerator.computer_science.decimal_to_binary": {"tf": 1}, "mathgenerator.computer_science.decimal_to_hexadeci": {"tf": 1}, "mathgenerator.computer_science.decimal_to_octal": {"tf": 1}, "mathgenerator.misc.decimal_to_roman_numerals": {"tf": 1}}, "df": 8}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.calculus.definite_integral": {"tf": 1}}, "df": 1}}}}}}, "g": {"docs": {"mathgenerator.geometry.radian_to_deg": {"tf": 1}}, "df": 1, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.degree_to_rad": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.algebra.vector_dot": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"mathgenerator.statistics.data_summary": {"tf": 1}}, "df": 1}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1}}, "df": 1, "s": {"docs": {"mathgenerator.algebra.distance_two_points": {"tf": 1}, "mathgenerator.algebra.line_equation_from_2_points": {"tf": 1}, "mathgenerator.algebra.midpoint_of_two_points": {"tf": 1}, "mathgenerator.calculus.stationary_points": {"tf": 1}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}}, "df": 5}}}}, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.basic_math.power_of_powers": {"tf": 1}, "mathgenerator.calculus.power_rule_differentiation": {"tf": 1}, "mathgenerator.calculus.power_rule_integration": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_base": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_power": {"tf": 1.4142135623730951}}, "df": 5, "s": {"docs": {"mathgenerator.basic_math.power_of_powers": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.geometry.angle_regular_polygon": {"tf": 1}, "mathgenerator.geometry.sum_of_polygon_angles": {"tf": 1}}, "df": 2, "s": {"docs": {"mathgenerator.geometry.perimeter_of_polygons": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.misc.complex_to_polar": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.basic_math.is_prime": {"tf": 1}, "mathgenerator.misc.prime_factors": {"tf": 1}}, "df": 2}}}, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.misc.arithmetic_progression_sum": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_term": {"tf": 1}, "mathgenerator.misc.geometric_progression": {"tf": 1}}, "df": 3}}}}}}}}, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.misc.product_of_scientific_notations": {"tf": 1}}, "df": 1}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.misc.profit_loss_percent": {"tf": 1}}, "df": 1}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.statistics.conditional_probability": {"tf": 1}, "mathgenerator.statistics.dice_sum_probability": {"tf": 1}}, "df": 2}}}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.misc.profit_loss_percent": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.basic_math.percentage": {"tf": 1}, "mathgenerator.basic_math.percentage_difference": {"tf": 1}, "mathgenerator.basic_math.percentage_error": {"tf": 1}}, "df": 3}}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.geometry.perimeter_of_polygons": {"tf": 1}}, "df": 1}}}}}}, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.statistics.permutation": {"tf": 1}}, "df": 1}}}}}}}}}}, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.geometry.pythagorean_theorem": {"tf": 1}}, "df": 1}}}}}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.geometry.surface_area_pyramid": {"tf": 1}, "mathgenerator.geometry.volume_pyramid": {"tf": 1}}, "df": 2}}}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"mathgenerator.algebra.expanding": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.basic_math.exponentiation": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.algebra.line_equation_from_2_points": {"tf": 1}, "mathgenerator.algebra.quadratic_equation": {"tf": 1}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}}, "df": 3, "s": {"docs": {"mathgenerator.algebra.linear_equations": {"tf": 1}, "mathgenerator.algebra.system_of_equations": {"tf": 1}}, "df": 2}}}}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.basic_math.percentage_error": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.misc.euclidian_norm": {"tf": 1}}, "df": 1}}}}}}}}}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"mathgenerator.algebra.factoring": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator.basic_math.factorial": {"tf": 1}}, "df": 1}}}, "s": {"docs": {"mathgenerator.misc.common_factors": {"tf": 1}, "mathgenerator.misc.factors": {"tf": 1}, "mathgenerator.misc.prime_factors": {"tf": 1}}, "df": 3}}}}}, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.misc.celsius_to_fahrenheit": {"tf": 1}}, "df": 1}}}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"mathgenerator.algebra.line_equation_from_2_points": {"tf": 1}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}}, "df": 2}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.basic_math.fraction_multiplication": {"tf": 1}, "mathgenerator.basic_math.fraction_to_decimal": {"tf": 1}}, "df": 2, "s": {"docs": {"mathgenerator.basic_math.compare_fractions": {"tf": 1}, "mathgenerator.basic_math.divide_fractions": {"tf": 1}}, "df": 2}}}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"mathgenerator.geometry.volume_cone_frustum": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {"mathgenerator.computer_science.fibonacci_series": {"tf": 1}, "mathgenerator.computer_science.nth_fibonacci_number": {"tf": 1}}, "df": 2}}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"mathgenerator.geometry.fourth_angle_of_quadrilateral": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.misc.signum_function": {"tf": 1}}, "df": 1}}}}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {"mathgenerator.algebra.int_matrix_22_determinant": {"tf": 1}, "mathgenerator.algebra.invert_matrix": {"tf": 1}, "mathgenerator.algebra.matrix_multiplication": {"tf": 1}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1}}, "df": 4}}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}, "mathgenerator.basic_math.fraction_multiplication": {"tf": 1}, "mathgenerator.basic_math.multiplication": {"tf": 1}}, "df": 3}}}}}}}, "y": {"docs": {"mathgenerator.algebra.multiply_complex_numbers": {"tf": 1}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1}}, "df": 2}}}}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.algebra.midpoint_of_two_points": {"tf": 1}}, "df": 1}}}}}}, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.misc.minutes_to_hours": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {"mathgenerator.computer_science.modulo_division": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.misc.geometric_mean": {"tf": 1}, "mathgenerator.misc.harmonic_mean": {"tf": 1}, "mathgenerator.statistics.mean_median": {"tf": 1}}, "df": 3}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.statistics.mean_median": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "f": {"docs": {"mathgenerator.algebra.intersection_of_two_lines": {"tf": 1}, "mathgenerator.algebra.midpoint_of_two_points": {"tf": 1}, "mathgenerator.algebra.system_of_equations": {"tf": 1}, "mathgenerator.basic_math.power_of_powers": {"tf": 1}, "mathgenerator.geometry.area_of_circle": {"tf": 1}, "mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1}, "mathgenerator.geometry.area_of_triangle": {"tf": 1}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}, "mathgenerator.geometry.fourth_angle_of_quadrilateral": {"tf": 1}, "mathgenerator.geometry.perimeter_of_polygons": {"tf": 1}, "mathgenerator.geometry.sum_of_polygon_angles": {"tf": 1}, "mathgenerator.geometry.third_angle_of_triangle": {"tf": 1}, "mathgenerator.misc.product_of_scientific_notations": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_base": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_power": {"tf": 1}}, "df": 15}, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator.computer_science.decimal_to_octal": {"tf": 1}}, "df": 1}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.misc.set_operation": {"tf": 1}}, "df": 1}}}}}}}}}, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.computer_science.nth_fibonacci_number": {"tf": 1}}, "df": 1, "s": {"docs": {"mathgenerator.algebra.multiply_complex_numbers": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.misc.decimal_to_roman_numerals": {"tf": 1}}, "df": 1}}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"mathgenerator.computer_science.nth_fibonacci_number": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"mathgenerator.misc.euclidian_norm": {"tf": 1}}, "df": 1}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.misc.product_of_scientific_notations": {"tf": 1}}, "df": 1}}}}}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.algebra.simple_interest": {"tf": 1}}, "df": 1}, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.basic_math.simplify_square_root": {"tf": 1}}, "df": 1}}}}}}, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"mathgenerator.misc.signum_function": {"tf": 1}}, "df": 1}}}}}, "y": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {"mathgenerator.algebra.system_of_equations": {"tf": 1}}, "df": 1}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.basic_math.square": {"tf": 1}, "mathgenerator.basic_math.square_root": {"tf": 1}, "mathgenerator.basic_math.simplify_square_root": {"tf": 1}}, "df": 3}}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.basic_math.subtraction": {"tf": 1}}, "df": 1}}}}}}}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.geometry.complementary_and_supplementary_angle": {"tf": 1}}, "df": 1}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.surface_area_cone": {"tf": 1}, "mathgenerator.geometry.surface_area_cube": {"tf": 1}, "mathgenerator.geometry.surface_area_cuboid": {"tf": 1}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.surface_area_pyramid": {"tf": 1}, "mathgenerator.geometry.surface_area_sphere": {"tf": 1}}, "df": 7}}}}, "d": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.misc.surds_comparison": {"tf": 1}}, "df": 1}}}, "m": {"docs": {"mathgenerator.geometry.sum_of_polygon_angles": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_sum": {"tf": 1}, "mathgenerator.statistics.dice_sum_probability": {"tf": 1}}, "df": 3, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.statistics.data_summary": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.calculus.stationary_points": {"tf": 1}}, "df": 1}}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.computer_science.fibonacci_series": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.geometry.sector_area": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {"mathgenerator.misc.set_operation": {"tf": 1}}, "df": 1}}, "p": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.surface_area_sphere": {"tf": 1}, "mathgenerator.geometry.volume_sphere": {"tf": 1}}, "df": 2}}}}}, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"mathgenerator.misc.product_of_scientific_notations": {"tf": 1}}, "df": 1}}}}}}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.misc.quotient_of_power_same_base": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_power": {"tf": 1}}, "df": 2}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.algebra.vector_cross": {"tf": 1}, "mathgenerator.algebra.vector_dot": {"tf": 1}}, "df": 2, "s": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.geometry.valid_triangle": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.volume_cone": {"tf": 1}, "mathgenerator.geometry.volume_cube": {"tf": 1}, "mathgenerator.geometry.volume_cuboid": {"tf": 1}, "mathgenerator.geometry.volume_cylinder": {"tf": 1}, "mathgenerator.geometry.volume_cone_frustum": {"tf": 1}, "mathgenerator.geometry.volume_hemisphere": {"tf": 1}, "mathgenerator.geometry.volume_pyramid": {"tf": 1}, "mathgenerator.geometry.volume_sphere": {"tf": 1}}, "df": 8}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.basic_math.cube_root": {"tf": 1}, "mathgenerator.basic_math.square_root": {"tf": 1}, "mathgenerator.basic_math.simplify_square_root": {"tf": 1}}, "df": 3}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.misc.decimal_to_roman_numerals": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.calculus.power_rule_differentiation": {"tf": 1}, "mathgenerator.calculus.power_rule_integration": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.geometry.angle_regular_polygon": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.geometry.degree_to_rad": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.geometry.radian_to_deg": {"tf": 1}}, "df": 1}}}}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"mathgenerator.computer_science.binary_to_hex": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {"mathgenerator.computer_science.decimal_to_hexadeci": {"tf": 1}}, "df": 1}}}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.volume_hemisphere": {"tf": 1}}, "df": 1}}}}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"mathgenerator.misc.harmonic_mean": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.misc.minutes_to_hours": {"tf": 1}}, "df": 1}}}}}, "y": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.misc.is_leap_year": {"tf": 1}}, "df": 1}}}}}}, "fullname": {"root": {"1": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.computer_science.binary_complement_1s": {"tf": 1}}, "df": 1}}, "2": {"2": {"docs": {"mathgenerator.algebra.int_matrix_22_determinant": {"tf": 1}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1}}, "df": 2}, "docs": {"mathgenerator.algebra.line_equation_from_2_points": {"tf": 1}}, "df": 1, "s": {"docs": {"mathgenerator.computer_science.binary_2s_complement": {"tf": 1}}, "df": 1}}, "docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"mathgenerator.basic_math": {"tf": 1}, "mathgenerator.basic_math.absolute_difference": {"tf": 1}, "mathgenerator.basic_math.addition": {"tf": 1}, "mathgenerator.basic_math.compare_fractions": {"tf": 1}, "mathgenerator.basic_math.cube_root": {"tf": 1}, "mathgenerator.basic_math.divide_fractions": {"tf": 1}, "mathgenerator.basic_math.division": {"tf": 1}, "mathgenerator.basic_math.exponentiation": {"tf": 1}, "mathgenerator.basic_math.factorial": {"tf": 1}, "mathgenerator.basic_math.fraction_multiplication": {"tf": 1}, "mathgenerator.basic_math.fraction_to_decimal": {"tf": 1}, "mathgenerator.basic_math.greatest_common_divisor": {"tf": 1}, "mathgenerator.basic_math.is_composite": {"tf": 1}, "mathgenerator.basic_math.is_prime": {"tf": 1}, "mathgenerator.basic_math.multiplication": {"tf": 1}, "mathgenerator.basic_math.percentage": {"tf": 1}, "mathgenerator.basic_math.percentage_difference": {"tf": 1}, "mathgenerator.basic_math.percentage_error": {"tf": 1}, "mathgenerator.basic_math.power_of_powers": {"tf": 1}, "mathgenerator.basic_math.square": {"tf": 1}, "mathgenerator.basic_math.square_root": {"tf": 1}, "mathgenerator.basic_math.simplify_square_root": {"tf": 1}, "mathgenerator.basic_math.subtraction": {"tf": 1}}, "df": 23, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator": {"tf": 1}, "mathgenerator.get_gen_list": {"tf": 1}, "mathgenerator.gen_by_id": {"tf": 1}, "mathgenerator.getGenList": {"tf": 1}, "mathgenerator.genById": {"tf": 1}, "mathgenerator.algebra": {"tf": 1}, "mathgenerator.algebra.basic_algebra": {"tf": 1}, "mathgenerator.algebra.combine_like_terms": {"tf": 1}, "mathgenerator.algebra.complex_quadratic": {"tf": 1}, "mathgenerator.algebra.compound_interest": {"tf": 1}, "mathgenerator.algebra.distance_two_points": {"tf": 1}, "mathgenerator.algebra.expanding": {"tf": 1}, "mathgenerator.algebra.factoring": {"tf": 1}, "mathgenerator.algebra.int_matrix_22_determinant": {"tf": 1}, "mathgenerator.algebra.intersection_of_two_lines": {"tf": 1}, "mathgenerator.algebra.invert_matrix": {"tf": 1}, "mathgenerator.algebra.linear_equations": {"tf": 1}, "mathgenerator.algebra.line_equation_from_2_points": {"tf": 1}, "mathgenerator.algebra.log": {"tf": 1}, "mathgenerator.algebra.matrix_multiplication": {"tf": 1}, "mathgenerator.algebra.midpoint_of_two_points": {"tf": 1}, "mathgenerator.algebra.multiply_complex_numbers": {"tf": 1}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1}, "mathgenerator.algebra.quadratic_equation": {"tf": 1}, "mathgenerator.algebra.simple_interest": {"tf": 1}, "mathgenerator.algebra.system_of_equations": {"tf": 1}, "mathgenerator.algebra.vector_cross": {"tf": 1}, "mathgenerator.algebra.vector_dot": {"tf": 1}, "mathgenerator.basic_math": {"tf": 1}, "mathgenerator.basic_math.absolute_difference": {"tf": 1}, "mathgenerator.basic_math.addition": {"tf": 1}, "mathgenerator.basic_math.compare_fractions": {"tf": 1}, "mathgenerator.basic_math.cube_root": {"tf": 1}, "mathgenerator.basic_math.divide_fractions": {"tf": 1}, "mathgenerator.basic_math.division": {"tf": 1}, "mathgenerator.basic_math.exponentiation": {"tf": 1}, "mathgenerator.basic_math.factorial": {"tf": 1}, "mathgenerator.basic_math.fraction_multiplication": {"tf": 1}, "mathgenerator.basic_math.fraction_to_decimal": {"tf": 1}, "mathgenerator.basic_math.greatest_common_divisor": {"tf": 1}, "mathgenerator.basic_math.is_composite": {"tf": 1}, "mathgenerator.basic_math.is_prime": {"tf": 1}, "mathgenerator.basic_math.multiplication": {"tf": 1}, "mathgenerator.basic_math.percentage": {"tf": 1}, "mathgenerator.basic_math.percentage_difference": {"tf": 1}, "mathgenerator.basic_math.percentage_error": {"tf": 1}, "mathgenerator.basic_math.power_of_powers": {"tf": 1}, "mathgenerator.basic_math.square": {"tf": 1}, "mathgenerator.basic_math.square_root": {"tf": 1}, "mathgenerator.basic_math.simplify_square_root": {"tf": 1}, "mathgenerator.basic_math.subtraction": {"tf": 1}, "mathgenerator.calculus": {"tf": 1}, "mathgenerator.calculus.definite_integral": {"tf": 1}, "mathgenerator.calculus.power_rule_differentiation": {"tf": 1}, "mathgenerator.calculus.power_rule_integration": {"tf": 1}, "mathgenerator.calculus.stationary_points": {"tf": 1}, "mathgenerator.calculus.trig_differentiation": {"tf": 1}, "mathgenerator.computer_science": {"tf": 1}, "mathgenerator.computer_science.bcd_to_decimal": {"tf": 1}, "mathgenerator.computer_science.binary_2s_complement": {"tf": 1}, "mathgenerator.computer_science.binary_complement_1s": {"tf": 1}, "mathgenerator.computer_science.binary_to_decimal": {"tf": 1}, "mathgenerator.computer_science.binary_to_hex": {"tf": 1}, "mathgenerator.computer_science.decimal_to_bcd": {"tf": 1}, "mathgenerator.computer_science.decimal_to_binary": {"tf": 1}, "mathgenerator.computer_science.decimal_to_hexadeci": {"tf": 1}, "mathgenerator.computer_science.decimal_to_octal": {"tf": 1}, "mathgenerator.computer_science.fibonacci_series": {"tf": 1}, "mathgenerator.computer_science.modulo_division": {"tf": 1}, "mathgenerator.computer_science.nth_fibonacci_number": {"tf": 1}, "mathgenerator.geometry": {"tf": 1}, "mathgenerator.geometry.angle_btw_vectors": {"tf": 1}, "mathgenerator.geometry.angle_regular_polygon": {"tf": 1}, "mathgenerator.geometry.arc_length": {"tf": 1}, "mathgenerator.geometry.area_of_circle": {"tf": 1}, "mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1}, "mathgenerator.geometry.area_of_triangle": {"tf": 1}, "mathgenerator.geometry.basic_trigonometry": {"tf": 1}, "mathgenerator.geometry.circumference": {"tf": 1}, "mathgenerator.geometry.complementary_and_supplementary_angle": {"tf": 1}, "mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.degree_to_rad": {"tf": 1}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}, "mathgenerator.geometry.fourth_angle_of_quadrilateral": {"tf": 1}, "mathgenerator.geometry.perimeter_of_polygons": {"tf": 1}, "mathgenerator.geometry.pythagorean_theorem": {"tf": 1}, "mathgenerator.geometry.radian_to_deg": {"tf": 1}, "mathgenerator.geometry.sector_area": {"tf": 1}, "mathgenerator.geometry.sum_of_polygon_angles": {"tf": 1}, "mathgenerator.geometry.surface_area_cone": {"tf": 1}, "mathgenerator.geometry.surface_area_cube": {"tf": 1}, "mathgenerator.geometry.surface_area_cuboid": {"tf": 1}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.surface_area_pyramid": {"tf": 1}, "mathgenerator.geometry.surface_area_sphere": {"tf": 1}, "mathgenerator.geometry.third_angle_of_triangle": {"tf": 1}, "mathgenerator.geometry.valid_triangle": {"tf": 1}, "mathgenerator.geometry.volume_cone": {"tf": 1}, "mathgenerator.geometry.volume_cube": {"tf": 1}, "mathgenerator.geometry.volume_cuboid": {"tf": 1}, "mathgenerator.geometry.volume_cylinder": {"tf": 1}, "mathgenerator.geometry.volume_cone_frustum": {"tf": 1}, "mathgenerator.geometry.volume_hemisphere": {"tf": 1}, "mathgenerator.geometry.volume_pyramid": {"tf": 1}, "mathgenerator.geometry.volume_sphere": {"tf": 1}, "mathgenerator.misc": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_sum": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_term": {"tf": 1}, "mathgenerator.misc.base_conversion": {"tf": 1}, "mathgenerator.misc.binomial_distribution": {"tf": 1}, "mathgenerator.misc.celsius_to_fahrenheit": {"tf": 1}, "mathgenerator.misc.common_factors": {"tf": 1}, "mathgenerator.misc.complex_to_polar": {"tf": 1}, "mathgenerator.misc.decimal_to_roman_numerals": {"tf": 1}, "mathgenerator.misc.euclidian_norm": {"tf": 1}, "mathgenerator.misc.factors": {"tf": 1}, "mathgenerator.misc.geometric_mean": {"tf": 1}, "mathgenerator.misc.geometric_progression": {"tf": 1}, "mathgenerator.misc.harmonic_mean": {"tf": 1}, "mathgenerator.misc.is_leap_year": {"tf": 1}, "mathgenerator.misc.lcm": {"tf": 1}, "mathgenerator.misc.minutes_to_hours": {"tf": 1}, "mathgenerator.misc.prime_factors": {"tf": 1}, "mathgenerator.misc.product_of_scientific_notations": {"tf": 1}, "mathgenerator.misc.profit_loss_percent": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_base": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_power": {"tf": 1}, "mathgenerator.misc.set_operation": {"tf": 1}, "mathgenerator.misc.signum_function": {"tf": 1}, "mathgenerator.misc.surds_comparison": {"tf": 1}, "mathgenerator.statistics": {"tf": 1}, "mathgenerator.statistics.combinations": {"tf": 1}, "mathgenerator.statistics.conditional_probability": {"tf": 1}, "mathgenerator.statistics.confidence_interval": {"tf": 1}, "mathgenerator.statistics.data_summary": {"tf": 1}, "mathgenerator.statistics.dice_sum_probability": {"tf": 1}, "mathgenerator.statistics.mean_median": {"tf": 1}, "mathgenerator.statistics.permutation": {"tf": 1}}, "df": 138}}}}}}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {"mathgenerator.algebra.int_matrix_22_determinant": {"tf": 1}, "mathgenerator.algebra.invert_matrix": {"tf": 1}, "mathgenerator.algebra.matrix_multiplication": {"tf": 1}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1}}, "df": 4}}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}, "mathgenerator.basic_math.fraction_multiplication": {"tf": 1}, "mathgenerator.basic_math.multiplication": {"tf": 1}}, "df": 3}}}}}}}, "y": {"docs": {"mathgenerator.algebra.multiply_complex_numbers": {"tf": 1}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1}}, "df": 2}}}}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.algebra.midpoint_of_two_points": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "c": {"docs": {"mathgenerator.misc": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_sum": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_term": {"tf": 1}, "mathgenerator.misc.base_conversion": {"tf": 1}, "mathgenerator.misc.binomial_distribution": {"tf": 1}, "mathgenerator.misc.celsius_to_fahrenheit": {"tf": 1}, "mathgenerator.misc.common_factors": {"tf": 1}, "mathgenerator.misc.complex_to_polar": {"tf": 1}, "mathgenerator.misc.decimal_to_roman_numerals": {"tf": 1}, "mathgenerator.misc.euclidian_norm": {"tf": 1}, "mathgenerator.misc.factors": {"tf": 1}, "mathgenerator.misc.geometric_mean": {"tf": 1}, "mathgenerator.misc.geometric_progression": {"tf": 1}, "mathgenerator.misc.harmonic_mean": {"tf": 1}, "mathgenerator.misc.is_leap_year": {"tf": 1}, "mathgenerator.misc.lcm": {"tf": 1}, "mathgenerator.misc.minutes_to_hours": {"tf": 1}, "mathgenerator.misc.prime_factors": {"tf": 1}, "mathgenerator.misc.product_of_scientific_notations": {"tf": 1}, "mathgenerator.misc.profit_loss_percent": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_base": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_power": {"tf": 1}, "mathgenerator.misc.set_operation": {"tf": 1}, "mathgenerator.misc.signum_function": {"tf": 1}, "mathgenerator.misc.surds_comparison": {"tf": 1}}, "df": 25}}, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.misc.minutes_to_hours": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {"mathgenerator.computer_science.modulo_division": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.misc.geometric_mean": {"tf": 1}, "mathgenerator.misc.harmonic_mean": {"tf": 1}, "mathgenerator.statistics.mean_median": {"tf": 1}}, "df": 3}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.statistics.mean_median": {"tf": 1}}, "df": 1}}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.get_gen_list": {"tf": 1}}, "df": 1, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.getGenList": {"tf": 1}}, "df": 1}}}}}}}}, "n": {"docs": {"mathgenerator.get_gen_list": {"tf": 1}, "mathgenerator.gen_by_id": {"tf": 1}}, "df": 2, "b": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.genById": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.geometry": {"tf": 1}, "mathgenerator.geometry.angle_btw_vectors": {"tf": 1}, "mathgenerator.geometry.angle_regular_polygon": {"tf": 1}, "mathgenerator.geometry.arc_length": {"tf": 1}, "mathgenerator.geometry.area_of_circle": {"tf": 1}, "mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1}, "mathgenerator.geometry.area_of_triangle": {"tf": 1}, "mathgenerator.geometry.basic_trigonometry": {"tf": 1}, "mathgenerator.geometry.circumference": {"tf": 1}, "mathgenerator.geometry.complementary_and_supplementary_angle": {"tf": 1}, "mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.degree_to_rad": {"tf": 1}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}, "mathgenerator.geometry.fourth_angle_of_quadrilateral": {"tf": 1}, "mathgenerator.geometry.perimeter_of_polygons": {"tf": 1}, "mathgenerator.geometry.pythagorean_theorem": {"tf": 1}, "mathgenerator.geometry.radian_to_deg": {"tf": 1}, "mathgenerator.geometry.sector_area": {"tf": 1}, "mathgenerator.geometry.sum_of_polygon_angles": {"tf": 1}, "mathgenerator.geometry.surface_area_cone": {"tf": 1}, "mathgenerator.geometry.surface_area_cube": {"tf": 1}, "mathgenerator.geometry.surface_area_cuboid": {"tf": 1}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.surface_area_pyramid": {"tf": 1}, "mathgenerator.geometry.surface_area_sphere": {"tf": 1}, "mathgenerator.geometry.third_angle_of_triangle": {"tf": 1}, "mathgenerator.geometry.valid_triangle": {"tf": 1}, "mathgenerator.geometry.volume_cone": {"tf": 1}, "mathgenerator.geometry.volume_cube": {"tf": 1}, "mathgenerator.geometry.volume_cuboid": {"tf": 1}, "mathgenerator.geometry.volume_cylinder": {"tf": 1}, "mathgenerator.geometry.volume_cone_frustum": {"tf": 1}, "mathgenerator.geometry.volume_hemisphere": {"tf": 1}, "mathgenerator.geometry.volume_pyramid": {"tf": 1}, "mathgenerator.geometry.volume_sphere": {"tf": 1}}, "df": 35}, "i": {"docs": {}, "df": 0, "c": {"docs": {"mathgenerator.misc.geometric_mean": {"tf": 1}, "mathgenerator.misc.geometric_progression": {"tf": 1}}, "df": 2}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.basic_math.greatest_common_divisor": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.get_gen_list": {"tf": 1}}, "df": 1}}, "k": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.algebra.combine_like_terms": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.algebra.line_equation_from_2_points": {"tf": 1}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}}, "df": 2, "s": {"docs": {"mathgenerator.algebra.intersection_of_two_lines": {"tf": 1}}, "df": 1}, "a": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.algebra.linear_equations": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "g": {"docs": {"mathgenerator.algebra.log": {"tf": 1}}, "df": 1}, "s": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.misc.profit_loss_percent": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"mathgenerator.geometry.arc_length": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {"mathgenerator.misc.is_leap_year": {"tf": 1}}, "df": 1}}}, "c": {"docs": {}, "df": 0, "m": {"docs": {"mathgenerator.misc.lcm": {"tf": 1}}, "df": 1}}}, "b": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.gen_by_id": {"tf": 1}}, "df": 1}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"mathgenerator.algebra.basic_algebra": {"tf": 1}, "mathgenerator.basic_math": {"tf": 1}, "mathgenerator.basic_math.absolute_difference": {"tf": 1}, "mathgenerator.basic_math.addition": {"tf": 1}, "mathgenerator.basic_math.compare_fractions": {"tf": 1}, "mathgenerator.basic_math.cube_root": {"tf": 1}, "mathgenerator.basic_math.divide_fractions": {"tf": 1}, "mathgenerator.basic_math.division": {"tf": 1}, "mathgenerator.basic_math.exponentiation": {"tf": 1}, "mathgenerator.basic_math.factorial": {"tf": 1}, "mathgenerator.basic_math.fraction_multiplication": {"tf": 1}, "mathgenerator.basic_math.fraction_to_decimal": {"tf": 1}, "mathgenerator.basic_math.greatest_common_divisor": {"tf": 1}, "mathgenerator.basic_math.is_composite": {"tf": 1}, "mathgenerator.basic_math.is_prime": {"tf": 1}, "mathgenerator.basic_math.multiplication": {"tf": 1}, "mathgenerator.basic_math.percentage": {"tf": 1}, "mathgenerator.basic_math.percentage_difference": {"tf": 1}, "mathgenerator.basic_math.percentage_error": {"tf": 1}, "mathgenerator.basic_math.power_of_powers": {"tf": 1}, "mathgenerator.basic_math.square": {"tf": 1}, "mathgenerator.basic_math.square_root": {"tf": 1}, "mathgenerator.basic_math.simplify_square_root": {"tf": 1}, "mathgenerator.basic_math.subtraction": {"tf": 1}, "mathgenerator.geometry.basic_trigonometry": {"tf": 1}}, "df": 25}}, "e": {"docs": {"mathgenerator.misc.base_conversion": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_base": {"tf": 1}}, "df": 2}}}, "c": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.computer_science.bcd_to_decimal": {"tf": 1}, "mathgenerator.computer_science.decimal_to_bcd": {"tf": 1}}, "df": 2}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.computer_science.binary_2s_complement": {"tf": 1}, "mathgenerator.computer_science.binary_complement_1s": {"tf": 1}, "mathgenerator.computer_science.binary_to_decimal": {"tf": 1}, "mathgenerator.computer_science.binary_to_hex": {"tf": 1}, "mathgenerator.computer_science.decimal_to_binary": {"tf": 1}}, "df": 5}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator.misc.binomial_distribution": {"tf": 1}}, "df": 1}}}}}}}, "t": {"docs": {}, "df": 0, "w": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.gen_by_id": {"tf": 1}}, "df": 1}, "n": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.algebra.int_matrix_22_determinant": {"tf": 1}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.algebra.compound_interest": {"tf": 1}, "mathgenerator.algebra.simple_interest": {"tf": 1}}, "df": 2}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.algebra.intersection_of_two_lines": {"tf": 1}}, "df": 1}}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator.statistics.confidence_interval": {"tf": 1}}, "df": 1}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator.calculus.definite_integral": {"tf": 1}}, "df": 1}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.calculus.power_rule_integration": {"tf": 1}}, "df": 1}}}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.algebra.invert_matrix": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {"mathgenerator.basic_math.is_composite": {"tf": 1}, "mathgenerator.basic_math.is_prime": {"tf": 1}, "mathgenerator.misc.is_leap_year": {"tf": 1}}, "df": 3}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {"mathgenerator.algebra": {"tf": 1}, "mathgenerator.algebra.basic_algebra": {"tf": 1.4142135623730951}, "mathgenerator.algebra.combine_like_terms": {"tf": 1}, "mathgenerator.algebra.complex_quadratic": {"tf": 1}, "mathgenerator.algebra.compound_interest": {"tf": 1}, "mathgenerator.algebra.distance_two_points": {"tf": 1}, "mathgenerator.algebra.expanding": {"tf": 1}, "mathgenerator.algebra.factoring": {"tf": 1}, "mathgenerator.algebra.int_matrix_22_determinant": {"tf": 1}, "mathgenerator.algebra.intersection_of_two_lines": {"tf": 1}, "mathgenerator.algebra.invert_matrix": {"tf": 1}, "mathgenerator.algebra.linear_equations": {"tf": 1}, "mathgenerator.algebra.line_equation_from_2_points": {"tf": 1}, "mathgenerator.algebra.log": {"tf": 1}, "mathgenerator.algebra.matrix_multiplication": {"tf": 1}, "mathgenerator.algebra.midpoint_of_two_points": {"tf": 1}, "mathgenerator.algebra.multiply_complex_numbers": {"tf": 1}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1}, "mathgenerator.algebra.quadratic_equation": {"tf": 1}, "mathgenerator.algebra.simple_interest": {"tf": 1}, "mathgenerator.algebra.system_of_equations": {"tf": 1}, "mathgenerator.algebra.vector_cross": {"tf": 1}, "mathgenerator.algebra.vector_dot": {"tf": 1}}, "df": 23}}}}}}, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.basic_math.absolute_difference": {"tf": 1}}, "df": 1}}}}}}}, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.basic_math.addition": {"tf": 1}}, "df": 1}}}}}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}, "mathgenerator.geometry.angle_regular_polygon": {"tf": 1}, "mathgenerator.geometry.complementary_and_supplementary_angle": {"tf": 1}, "mathgenerator.geometry.fourth_angle_of_quadrilateral": {"tf": 1}, "mathgenerator.geometry.third_angle_of_triangle": {"tf": 1}}, "df": 5, "s": {"docs": {"mathgenerator.geometry.sum_of_polygon_angles": {"tf": 1}}, "df": 1}}}}, "d": {"docs": {"mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1}, "mathgenerator.geometry.complementary_and_supplementary_angle": {"tf": 1}}, "df": 2}}, "r": {"docs": {}, "df": 0, "c": {"docs": {"mathgenerator.geometry.arc_length": {"tf": 1}}, "df": 1}, "e": {"docs": {}, "df": 0, "a": {"docs": {"mathgenerator.geometry.area_of_circle": {"tf": 1}, "mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1}, "mathgenerator.geometry.area_of_triangle": {"tf": 1}, "mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.sector_area": {"tf": 1}, "mathgenerator.geometry.surface_area_cone": {"tf": 1}, "mathgenerator.geometry.surface_area_cube": {"tf": 1}, "mathgenerator.geometry.surface_area_cuboid": {"tf": 1}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.surface_area_pyramid": {"tf": 1}, "mathgenerator.geometry.surface_area_sphere": {"tf": 1}}, "df": 11}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"mathgenerator.misc.arithmetic_progression_sum": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_term": {"tf": 1}}, "df": 2}}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.algebra.combine_like_terms": {"tf": 1}}, "df": 1}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.statistics.combinations": {"tf": 1}}, "df": 1}}}}}}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"mathgenerator.algebra.complex_quadratic": {"tf": 1}, "mathgenerator.algebra.multiply_complex_numbers": {"tf": 1}, "mathgenerator.misc.complex_to_polar": {"tf": 1}}, "df": 3}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.computer_science.binary_2s_complement": {"tf": 1}, "mathgenerator.computer_science.binary_complement_1s": {"tf": 1}}, "df": 2, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.geometry.complementary_and_supplementary_angle": {"tf": 1}}, "df": 1}}}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.algebra.compound_interest": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.basic_math.is_composite": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.basic_math.compare_fractions": {"tf": 1}}, "df": 1}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.misc.surds_comparison": {"tf": 1}}, "df": 1}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.computer_science": {"tf": 1}, "mathgenerator.computer_science.bcd_to_decimal": {"tf": 1}, "mathgenerator.computer_science.binary_2s_complement": {"tf": 1}, "mathgenerator.computer_science.binary_complement_1s": {"tf": 1}, "mathgenerator.computer_science.binary_to_decimal": {"tf": 1}, "mathgenerator.computer_science.binary_to_hex": {"tf": 1}, "mathgenerator.computer_science.decimal_to_bcd": {"tf": 1}, "mathgenerator.computer_science.decimal_to_binary": {"tf": 1}, "mathgenerator.computer_science.decimal_to_hexadeci": {"tf": 1}, "mathgenerator.computer_science.decimal_to_octal": {"tf": 1}, "mathgenerator.computer_science.fibonacci_series": {"tf": 1}, "mathgenerator.computer_science.modulo_division": {"tf": 1}, "mathgenerator.computer_science.nth_fibonacci_number": {"tf": 1}}, "df": 13}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.basic_math.greatest_common_divisor": {"tf": 1}, "mathgenerator.misc.common_factors": {"tf": 1}}, "df": 2}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.surface_area_cone": {"tf": 1}, "mathgenerator.geometry.volume_cone": {"tf": 1}, "mathgenerator.geometry.volume_cone_frustum": {"tf": 1}}, "df": 3}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.misc.base_conversion": {"tf": 1}}, "df": 1}}}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator.statistics.conditional_probability": {"tf": 1}}, "df": 1}}}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.statistics.confidence_interval": {"tf": 1}}, "df": 1}}}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.algebra.vector_cross": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.basic_math.cube_root": {"tf": 1}, "mathgenerator.geometry.surface_area_cube": {"tf": 1}, "mathgenerator.geometry.volume_cube": {"tf": 1}}, "df": 3}, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.geometry.surface_area_cuboid": {"tf": 1}, "mathgenerator.geometry.volume_cuboid": {"tf": 1}}, "df": 2}}}}, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.calculus": {"tf": 1}, "mathgenerator.calculus.definite_integral": {"tf": 1}, "mathgenerator.calculus.power_rule_differentiation": {"tf": 1}, "mathgenerator.calculus.power_rule_integration": {"tf": 1}, "mathgenerator.calculus.stationary_points": {"tf": 1}, "mathgenerator.calculus.trig_differentiation": {"tf": 1}}, "df": 6}}}}}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.area_of_circle": {"tf": 1}, "mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1}}, "df": 2}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.circumference": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.misc.celsius_to_fahrenheit": {"tf": 1}}, "df": 1}}}}}}, "y": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.volume_cylinder": {"tf": 1}}, "df": 3}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"mathgenerator.misc.arithmetic_progression_term": {"tf": 1}}, "df": 1, "s": {"docs": {"mathgenerator.algebra.combine_like_terms": {"tf": 1}}, "df": 1}}}}, "w": {"docs": {}, "df": 0, "o": {"docs": {"mathgenerator.algebra.distance_two_points": {"tf": 1}, "mathgenerator.algebra.intersection_of_two_lines": {"tf": 1}, "mathgenerator.algebra.midpoint_of_two_points": {"tf": 1}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}}, "df": 4}}, "o": {"docs": {"mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1}, "mathgenerator.basic_math.fraction_to_decimal": {"tf": 1}, "mathgenerator.computer_science.bcd_to_decimal": {"tf": 1}, "mathgenerator.computer_science.binary_to_decimal": {"tf": 1}, "mathgenerator.computer_science.binary_to_hex": {"tf": 1}, "mathgenerator.computer_science.decimal_to_bcd": {"tf": 1}, "mathgenerator.computer_science.decimal_to_binary": {"tf": 1}, "mathgenerator.computer_science.decimal_to_hexadeci": {"tf": 1}, "mathgenerator.computer_science.decimal_to_octal": {"tf": 1}, "mathgenerator.geometry.degree_to_rad": {"tf": 1}, "mathgenerator.geometry.radian_to_deg": {"tf": 1}, "mathgenerator.misc.celsius_to_fahrenheit": {"tf": 1}, "mathgenerator.misc.complex_to_polar": {"tf": 1}, "mathgenerator.misc.decimal_to_roman_numerals": {"tf": 1}, "mathgenerator.misc.minutes_to_hours": {"tf": 1}}, "df": 15}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"mathgenerator.calculus.trig_differentiation": {"tf": 1}}, "df": 1, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.geometry.basic_trigonometry": {"tf": 1}}, "df": 1}}}}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.area_of_triangle": {"tf": 1}, "mathgenerator.geometry.third_angle_of_triangle": {"tf": 1}, "mathgenerator.geometry.valid_triangle": {"tf": 1}}, "df": 3}}}}}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {"mathgenerator.geometry.pythagorean_theorem": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.geometry.third_angle_of_triangle": {"tf": 1}}, "df": 1}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"mathgenerator.algebra.complex_quadratic": {"tf": 1}, "mathgenerator.algebra.quadratic_equation": {"tf": 1}}, "df": 2}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator.geometry.fourth_angle_of_quadrilateral": {"tf": 1}}, "df": 1}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.misc.quotient_of_power_same_base": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_power": {"tf": 1}}, "df": 2}}}}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.algebra.distance_two_points": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.misc.binomial_distribution": {"tf": 1}}, "df": 1}}}}}}}}}}, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.basic_math.absolute_difference": {"tf": 1}, "mathgenerator.basic_math.percentage_difference": {"tf": 1}}, "df": 2}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.calculus.power_rule_differentiation": {"tf": 1}, "mathgenerator.calculus.trig_differentiation": {"tf": 1}}, "df": 2}}}}}}}}}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.basic_math.divide_fractions": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.basic_math.division": {"tf": 1}, "mathgenerator.computer_science.modulo_division": {"tf": 1}}, "df": 2}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.basic_math.greatest_common_divisor": {"tf": 1}}, "df": 1}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.statistics.dice_sum_probability": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.algebra.int_matrix_22_determinant": {"tf": 1}}, "df": 1}}}}}}}}}, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator.basic_math.fraction_to_decimal": {"tf": 1}, "mathgenerator.computer_science.bcd_to_decimal": {"tf": 1}, "mathgenerator.computer_science.binary_to_decimal": {"tf": 1}, "mathgenerator.computer_science.decimal_to_bcd": {"tf": 1}, "mathgenerator.computer_science.decimal_to_binary": {"tf": 1}, "mathgenerator.computer_science.decimal_to_hexadeci": {"tf": 1}, "mathgenerator.computer_science.decimal_to_octal": {"tf": 1}, "mathgenerator.misc.decimal_to_roman_numerals": {"tf": 1}}, "df": 8}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.calculus.definite_integral": {"tf": 1}}, "df": 1}}}}}}, "g": {"docs": {"mathgenerator.geometry.radian_to_deg": {"tf": 1}}, "df": 1, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.degree_to_rad": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.algebra.vector_dot": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"mathgenerator.statistics.data_summary": {"tf": 1}}, "df": 1}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1}}, "df": 1, "s": {"docs": {"mathgenerator.algebra.distance_two_points": {"tf": 1}, "mathgenerator.algebra.line_equation_from_2_points": {"tf": 1}, "mathgenerator.algebra.midpoint_of_two_points": {"tf": 1}, "mathgenerator.calculus.stationary_points": {"tf": 1}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}}, "df": 5}}}}, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.basic_math.power_of_powers": {"tf": 1}, "mathgenerator.calculus.power_rule_differentiation": {"tf": 1}, "mathgenerator.calculus.power_rule_integration": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_base": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_power": {"tf": 1.4142135623730951}}, "df": 5, "s": {"docs": {"mathgenerator.basic_math.power_of_powers": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.geometry.angle_regular_polygon": {"tf": 1}, "mathgenerator.geometry.sum_of_polygon_angles": {"tf": 1}}, "df": 2, "s": {"docs": {"mathgenerator.geometry.perimeter_of_polygons": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.misc.complex_to_polar": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.basic_math.is_prime": {"tf": 1}, "mathgenerator.misc.prime_factors": {"tf": 1}}, "df": 2}}}, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.misc.arithmetic_progression_sum": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_term": {"tf": 1}, "mathgenerator.misc.geometric_progression": {"tf": 1}}, "df": 3}}}}}}}}, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.misc.product_of_scientific_notations": {"tf": 1}}, "df": 1}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.misc.profit_loss_percent": {"tf": 1}}, "df": 1}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.statistics.conditional_probability": {"tf": 1}, "mathgenerator.statistics.dice_sum_probability": {"tf": 1}}, "df": 2}}}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.misc.profit_loss_percent": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.basic_math.percentage": {"tf": 1}, "mathgenerator.basic_math.percentage_difference": {"tf": 1}, "mathgenerator.basic_math.percentage_error": {"tf": 1}}, "df": 3}}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.geometry.perimeter_of_polygons": {"tf": 1}}, "df": 1}}}}}}, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.statistics.permutation": {"tf": 1}}, "df": 1}}}}}}}}}}, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.geometry.pythagorean_theorem": {"tf": 1}}, "df": 1}}}}}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.geometry.surface_area_pyramid": {"tf": 1}, "mathgenerator.geometry.volume_pyramid": {"tf": 1}}, "df": 2}}}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"mathgenerator.algebra.expanding": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.basic_math.exponentiation": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.algebra.line_equation_from_2_points": {"tf": 1}, "mathgenerator.algebra.quadratic_equation": {"tf": 1}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}}, "df": 3, "s": {"docs": {"mathgenerator.algebra.linear_equations": {"tf": 1}, "mathgenerator.algebra.system_of_equations": {"tf": 1}}, "df": 2}}}}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.basic_math.percentage_error": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.misc.euclidian_norm": {"tf": 1}}, "df": 1}}}}}}}}}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"mathgenerator.algebra.factoring": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator.basic_math.factorial": {"tf": 1}}, "df": 1}}}, "s": {"docs": {"mathgenerator.misc.common_factors": {"tf": 1}, "mathgenerator.misc.factors": {"tf": 1}, "mathgenerator.misc.prime_factors": {"tf": 1}}, "df": 3}}}}}, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.misc.celsius_to_fahrenheit": {"tf": 1}}, "df": 1}}}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"mathgenerator.algebra.line_equation_from_2_points": {"tf": 1}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}}, "df": 2}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.basic_math.fraction_multiplication": {"tf": 1}, "mathgenerator.basic_math.fraction_to_decimal": {"tf": 1}}, "df": 2, "s": {"docs": {"mathgenerator.basic_math.compare_fractions": {"tf": 1}, "mathgenerator.basic_math.divide_fractions": {"tf": 1}}, "df": 2}}}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"mathgenerator.geometry.volume_cone_frustum": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {"mathgenerator.computer_science.fibonacci_series": {"tf": 1}, "mathgenerator.computer_science.nth_fibonacci_number": {"tf": 1}}, "df": 2}}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"mathgenerator.geometry.fourth_angle_of_quadrilateral": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.misc.signum_function": {"tf": 1}}, "df": 1}}}}}}}}, "o": {"docs": {}, "df": 0, "f": {"docs": {"mathgenerator.algebra.intersection_of_two_lines": {"tf": 1}, "mathgenerator.algebra.midpoint_of_two_points": {"tf": 1}, "mathgenerator.algebra.system_of_equations": {"tf": 1}, "mathgenerator.basic_math.power_of_powers": {"tf": 1}, "mathgenerator.geometry.area_of_circle": {"tf": 1}, "mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1}, "mathgenerator.geometry.area_of_triangle": {"tf": 1}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}, "mathgenerator.geometry.fourth_angle_of_quadrilateral": {"tf": 1}, "mathgenerator.geometry.perimeter_of_polygons": {"tf": 1}, "mathgenerator.geometry.sum_of_polygon_angles": {"tf": 1}, "mathgenerator.geometry.third_angle_of_triangle": {"tf": 1}, "mathgenerator.misc.product_of_scientific_notations": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_base": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_power": {"tf": 1}}, "df": 15}, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator.computer_science.decimal_to_octal": {"tf": 1}}, "df": 1}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.misc.set_operation": {"tf": 1}}, "df": 1}}}}}}}}}, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.computer_science.nth_fibonacci_number": {"tf": 1}}, "df": 1, "s": {"docs": {"mathgenerator.algebra.multiply_complex_numbers": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.misc.decimal_to_roman_numerals": {"tf": 1}}, "df": 1}}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"mathgenerator.computer_science.nth_fibonacci_number": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"mathgenerator.misc.euclidian_norm": {"tf": 1}}, "df": 1}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.misc.product_of_scientific_notations": {"tf": 1}}, "df": 1}}}}}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.algebra.simple_interest": {"tf": 1}}, "df": 1}, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.basic_math.simplify_square_root": {"tf": 1}}, "df": 1}}}}}}, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"mathgenerator.misc.signum_function": {"tf": 1}}, "df": 1}}}}}, "y": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {"mathgenerator.algebra.system_of_equations": {"tf": 1}}, "df": 1}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.basic_math.square": {"tf": 1}, "mathgenerator.basic_math.square_root": {"tf": 1}, "mathgenerator.basic_math.simplify_square_root": {"tf": 1}}, "df": 3}}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.basic_math.subtraction": {"tf": 1}}, "df": 1}}}}}}}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.geometry.complementary_and_supplementary_angle": {"tf": 1}}, "df": 1}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.surface_area_cone": {"tf": 1}, "mathgenerator.geometry.surface_area_cube": {"tf": 1}, "mathgenerator.geometry.surface_area_cuboid": {"tf": 1}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.surface_area_pyramid": {"tf": 1}, "mathgenerator.geometry.surface_area_sphere": {"tf": 1}}, "df": 7}}}}, "d": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.misc.surds_comparison": {"tf": 1}}, "df": 1}}}, "m": {"docs": {"mathgenerator.geometry.sum_of_polygon_angles": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_sum": {"tf": 1}, "mathgenerator.statistics.dice_sum_probability": {"tf": 1}}, "df": 3, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.statistics.data_summary": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.calculus.stationary_points": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.statistics": {"tf": 1}, "mathgenerator.statistics.combinations": {"tf": 1}, "mathgenerator.statistics.conditional_probability": {"tf": 1}, "mathgenerator.statistics.confidence_interval": {"tf": 1}, "mathgenerator.statistics.data_summary": {"tf": 1}, "mathgenerator.statistics.dice_sum_probability": {"tf": 1}, "mathgenerator.statistics.mean_median": {"tf": 1}, "mathgenerator.statistics.permutation": {"tf": 1}}, "df": 8}}}}}}}}}, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.computer_science": {"tf": 1}, "mathgenerator.computer_science.bcd_to_decimal": {"tf": 1}, "mathgenerator.computer_science.binary_2s_complement": {"tf": 1}, "mathgenerator.computer_science.binary_complement_1s": {"tf": 1}, "mathgenerator.computer_science.binary_to_decimal": {"tf": 1}, "mathgenerator.computer_science.binary_to_hex": {"tf": 1}, "mathgenerator.computer_science.decimal_to_bcd": {"tf": 1}, "mathgenerator.computer_science.decimal_to_binary": {"tf": 1}, "mathgenerator.computer_science.decimal_to_hexadeci": {"tf": 1}, "mathgenerator.computer_science.decimal_to_octal": {"tf": 1}, "mathgenerator.computer_science.fibonacci_series": {"tf": 1}, "mathgenerator.computer_science.modulo_division": {"tf": 1}, "mathgenerator.computer_science.nth_fibonacci_number": {"tf": 1}}, "df": 13}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"mathgenerator.misc.product_of_scientific_notations": {"tf": 1}}, "df": 1}}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.computer_science.fibonacci_series": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.geometry.sector_area": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {"mathgenerator.misc.set_operation": {"tf": 1}}, "df": 1}}, "p": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.surface_area_sphere": {"tf": 1}, "mathgenerator.geometry.volume_sphere": {"tf": 1}}, "df": 2}}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.misc.quotient_of_power_same_base": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_power": {"tf": 1}}, "df": 2}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.algebra.vector_cross": {"tf": 1}, "mathgenerator.algebra.vector_dot": {"tf": 1}}, "df": 2, "s": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.geometry.valid_triangle": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.volume_cone": {"tf": 1}, "mathgenerator.geometry.volume_cube": {"tf": 1}, "mathgenerator.geometry.volume_cuboid": {"tf": 1}, "mathgenerator.geometry.volume_cylinder": {"tf": 1}, "mathgenerator.geometry.volume_cone_frustum": {"tf": 1}, "mathgenerator.geometry.volume_hemisphere": {"tf": 1}, "mathgenerator.geometry.volume_pyramid": {"tf": 1}, "mathgenerator.geometry.volume_sphere": {"tf": 1}}, "df": 8}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.basic_math.cube_root": {"tf": 1}, "mathgenerator.basic_math.square_root": {"tf": 1}, "mathgenerator.basic_math.simplify_square_root": {"tf": 1}}, "df": 3}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.misc.decimal_to_roman_numerals": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.calculus.power_rule_differentiation": {"tf": 1}, "mathgenerator.calculus.power_rule_integration": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.geometry.angle_regular_polygon": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.geometry.degree_to_rad": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.geometry.radian_to_deg": {"tf": 1}}, "df": 1}}}}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"mathgenerator.computer_science.binary_to_hex": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {"mathgenerator.computer_science.decimal_to_hexadeci": {"tf": 1}}, "df": 1}}}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.volume_hemisphere": {"tf": 1}}, "df": 1}}}}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"mathgenerator.misc.harmonic_mean": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.misc.minutes_to_hours": {"tf": 1}}, "df": 1}}}}}, "y": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.misc.is_leap_year": {"tf": 1}}, "df": 1}}}}}}, "annotation": {"root": {"docs": {}, "df": 0}}, "default_value": {"root": {"docs": {}, "df": 0}}, "signature": {"root": {"0": {"docs": {"mathgenerator.algebra.complex_quadratic": {"tf": 1}, "mathgenerator.basic_math.percentage_difference": {"tf": 1}, "mathgenerator.geometry.basic_trigonometry": {"tf": 1}}, "df": 3}, "1": {"0": {"0": {"0": {"0": {"docs": {"mathgenerator.algebra.compound_interest": {"tf": 1}, "mathgenerator.algebra.simple_interest": {"tf": 1}, "mathgenerator.computer_science.bcd_to_decimal": {"tf": 1}, "mathgenerator.computer_science.decimal_to_bcd": {"tf": 1}}, "df": 4}, "docs": {"mathgenerator.basic_math.cube_root": {"tf": 1}, "mathgenerator.basic_math.greatest_common_divisor": {"tf": 1}, "mathgenerator.computer_science.decimal_to_hexadeci": {"tf": 1}, "mathgenerator.misc.factors": {"tf": 1}, "mathgenerator.misc.profit_loss_percent": {"tf": 1.4142135623730951}}, "df": 5}, "docs": {"mathgenerator.algebra.int_matrix_22_determinant": {"tf": 1}, "mathgenerator.algebra.matrix_multiplication": {"tf": 1}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1}, "mathgenerator.algebra.quadratic_equation": {"tf": 1}, "mathgenerator.basic_math.absolute_difference": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.is_prime": {"tf": 1}, "mathgenerator.basic_math.percentage_error": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.simplify_square_root": {"tf": 1}, "mathgenerator.calculus.definite_integral": {"tf": 1}, "mathgenerator.computer_science.nth_fibonacci_number": {"tf": 1}, "mathgenerator.geometry.area_of_circle": {"tf": 1}, "mathgenerator.geometry.circumference": {"tf": 1}, "mathgenerator.geometry.volume_hemisphere": {"tf": 1}, "mathgenerator.geometry.volume_sphere": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_sum": {"tf": 1.7320508075688772}, "mathgenerator.misc.arithmetic_progression_term": {"tf": 1.7320508075688772}, "mathgenerator.misc.celsius_to_fahrenheit": {"tf": 1}, "mathgenerator.misc.common_factors": {"tf": 1}, "mathgenerator.misc.geometric_mean": {"tf": 1}, "mathgenerator.misc.harmonic_mean": {"tf": 1}, "mathgenerator.misc.product_of_scientific_notations": {"tf": 1.4142135623730951}, "mathgenerator.misc.surds_comparison": {"tf": 1}}, "df": 22}, "docs": {"mathgenerator.algebra.basic_algebra": {"tf": 1}, "mathgenerator.algebra.combine_like_terms": {"tf": 1.4142135623730951}, "mathgenerator.algebra.complex_quadratic": {"tf": 1}, "mathgenerator.algebra.compound_interest": {"tf": 1.4142135623730951}, "mathgenerator.algebra.expanding": {"tf": 2}, "mathgenerator.algebra.factoring": {"tf": 1.4142135623730951}, "mathgenerator.algebra.intersection_of_two_lines": {"tf": 2}, "mathgenerator.algebra.matrix_multiplication": {"tf": 1}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1}, "mathgenerator.algebra.simple_interest": {"tf": 1.4142135623730951}, "mathgenerator.algebra.system_of_equations": {"tf": 1.7320508075688772}, "mathgenerator.basic_math.compare_fractions": {"tf": 1}, "mathgenerator.basic_math.divide_fractions": {"tf": 1}, "mathgenerator.basic_math.exponentiation": {"tf": 1}, "mathgenerator.basic_math.fraction_multiplication": {"tf": 1}, "mathgenerator.basic_math.power_of_powers": {"tf": 1}, "mathgenerator.calculus.power_rule_differentiation": {"tf": 1.4142135623730951}, "mathgenerator.calculus.power_rule_integration": {"tf": 1.4142135623730951}, "mathgenerator.calculus.stationary_points": {"tf": 1}, "mathgenerator.computer_science.binary_2s_complement": {"tf": 1}, "mathgenerator.computer_science.binary_complement_1s": {"tf": 1}, "mathgenerator.computer_science.binary_to_decimal": {"tf": 1}, "mathgenerator.computer_science.binary_to_hex": {"tf": 1}, "mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1.4142135623730951}, "mathgenerator.misc.quotient_of_power_same_base": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_power": {"tf": 1}, "mathgenerator.misc.surds_comparison": {"tf": 1}, "mathgenerator.statistics.mean_median": {"tf": 1}}, "df": 28}, "2": {"0": {"docs": {"mathgenerator.geometry.perimeter_of_polygons": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.basic_math.multiplication": {"tf": 1}, "mathgenerator.basic_math.square_root": {"tf": 1}, "mathgenerator.geometry.perimeter_of_polygons": {"tf": 1}, "mathgenerator.geometry.sum_of_polygon_angles": {"tf": 1}, "mathgenerator.misc.geometric_progression": {"tf": 1}}, "df": 5}, "5": {"docs": {"mathgenerator.statistics.data_summary": {"tf": 1}}, "df": 1}, "6": {"docs": {"mathgenerator.misc.base_conversion": {"tf": 1}}, "df": 1}, "8": {"0": {"docs": {"mathgenerator.geometry.complementary_and_supplementary_angle": {"tf": 1}, "mathgenerator.geometry.fourth_angle_of_quadrilateral": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "9": {"0": {"0": {"docs": {"mathgenerator.misc.is_leap_year": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"mathgenerator.algebra.intersection_of_two_lines": {"tf": 1}, "mathgenerator.basic_math.cube_root": {"tf": 1}, "mathgenerator.basic_math.square_root": {"tf": 1}, "mathgenerator.computer_science.fibonacci_series": {"tf": 1}, "mathgenerator.misc.prime_factors": {"tf": 1}}, "df": 5}, "2": {"0": {"0": {"docs": {"mathgenerator.basic_math.percentage_difference": {"tf": 1}, "mathgenerator.misc.prime_factors": {"tf": 1}}, "df": 2}, "9": {"9": {"docs": {"mathgenerator.misc.is_leap_year": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {"mathgenerator.algebra.combine_like_terms": {"tf": 1}, "mathgenerator.algebra.distance_two_points": {"tf": 1.4142135623730951}, "mathgenerator.algebra.linear_equations": {"tf": 1.4142135623730951}, "mathgenerator.algebra.line_equation_from_2_points": {"tf": 1}, "mathgenerator.algebra.midpoint_of_two_points": {"tf": 1}, "mathgenerator.algebra.multiply_complex_numbers": {"tf": 1.4142135623730951}, "mathgenerator.algebra.vector_cross": {"tf": 1.4142135623730951}, "mathgenerator.algebra.vector_dot": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.exponentiation": {"tf": 1}, "mathgenerator.basic_math.square": {"tf": 1}, "mathgenerator.geometry.angle_btw_vectors": {"tf": 1}, "mathgenerator.geometry.angle_regular_polygon": {"tf": 1}, "mathgenerator.geometry.area_of_triangle": {"tf": 1.4142135623730951}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1.4142135623730951}, "mathgenerator.geometry.pythagorean_theorem": {"tf": 1}, "mathgenerator.geometry.surface_area_cone": {"tf": 1}, "mathgenerator.geometry.surface_area_cube": {"tf": 1}, "mathgenerator.geometry.surface_area_cuboid": {"tf": 1}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.surface_area_sphere": {"tf": 1}, "mathgenerator.geometry.volume_cone": {"tf": 1}, "mathgenerator.geometry.volume_cube": {"tf": 1}, "mathgenerator.geometry.volume_cuboid": {"tf": 1}, "mathgenerator.geometry.volume_cylinder": {"tf": 1}, "mathgenerator.geometry.volume_cone_frustum": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_pyramid": {"tf": 1.4142135623730951}, "mathgenerator.misc.complex_to_polar": {"tf": 1.4142135623730951}, "mathgenerator.misc.euclidian_norm": {"tf": 1}, "mathgenerator.misc.lcm": {"tf": 1}, "mathgenerator.statistics.combinations": {"tf": 1}, "mathgenerator.statistics.permutation": {"tf": 1}}, "df": 31}, "5": {"0": {"docs": {"mathgenerator.basic_math.is_composite": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.basic_math.division": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"mathgenerator.geometry.radian_to_deg": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.algebra.linear_equations": {"tf": 1}, "mathgenerator.basic_math.greatest_common_divisor": {"tf": 1}, "mathgenerator.misc.geometric_progression": {"tf": 1}}, "df": 3}, "3": {"0": {"docs": {"mathgenerator.geometry.basic_trigonometry": {"tf": 1}}, "df": 1}, "5": {"9": {"docs": {"mathgenerator.geometry.arc_length": {"tf": 1}, "mathgenerator.geometry.sector_area": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "6": {"0": {"docs": {"mathgenerator.geometry.degree_to_rad": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "9": {"docs": {"mathgenerator.geometry.basic_trigonometry": {"tf": 2.449489742783178}, "mathgenerator.geometry.surface_area_cone": {"tf": 1.4142135623730951}, "mathgenerator.geometry.surface_area_cube": {"tf": 1.4142135623730951}, "mathgenerator.geometry.surface_area_cuboid": {"tf": 1.4142135623730951}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 1.4142135623730951}, "mathgenerator.geometry.surface_area_pyramid": {"tf": 1.4142135623730951}, "mathgenerator.geometry.surface_area_sphere": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_cone": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_cube": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_cuboid": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_cylinder": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_cone_frustum": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_pyramid": {"tf": 1.4142135623730951}}, "df": 13}, "docs": {"mathgenerator.algebra.invert_matrix": {"tf": 1}, "mathgenerator.algebra.log": {"tf": 1}, "mathgenerator.calculus.stationary_points": {"tf": 1}, "mathgenerator.geometry.angle_regular_polygon": {"tf": 1}, "mathgenerator.misc.set_operation": {"tf": 1}, "mathgenerator.statistics.dice_sum_probability": {"tf": 1}}, "df": 6}, "4": {"0": {"0": {"0": {"docs": {"mathgenerator.misc.decimal_to_roman_numerals": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "9": {"6": {"docs": {"mathgenerator.computer_science.decimal_to_octal": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "5": {"docs": {"mathgenerator.geometry.basic_trigonometry": {"tf": 1}}, "df": 1}, "9": {"docs": {"mathgenerator.geometry.arc_length": {"tf": 1}, "mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.sector_area": {"tf": 1}}, "df": 3}, "docs": {"mathgenerator.misc.geometric_mean": {"tf": 1}, "mathgenerator.misc.harmonic_mean": {"tf": 1}}, "df": 2}, "5": {"0": {"docs": {"mathgenerator.basic_math.addition": {"tf": 1}, "mathgenerator.basic_math.power_of_powers": {"tf": 1}, "mathgenerator.geometry.surface_area_cone": {"tf": 1}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.valid_triangle": {"tf": 1}, "mathgenerator.geometry.volume_cone": {"tf": 1}, "mathgenerator.geometry.volume_cylinder": {"tf": 1}, "mathgenerator.geometry.volume_cone_frustum": {"tf": 1}, "mathgenerator.geometry.volume_pyramid": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_base": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_power": {"tf": 1}, "mathgenerator.statistics.data_summary": {"tf": 1}}, "df": 12}, "docs": {"mathgenerator.calculus.power_rule_differentiation": {"tf": 1}, "mathgenerator.calculus.power_rule_integration": {"tf": 1}, "mathgenerator.misc.geometric_progression": {"tf": 1}, "mathgenerator.statistics.data_summary": {"tf": 1}}, "df": 4}, "6": {"0": {"0": {"0": {"0": {"docs": {"mathgenerator.misc.base_conversion": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"mathgenerator.geometry.basic_trigonometry": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.algebra.intersection_of_two_lines": {"tf": 1}, "mathgenerator.basic_math.factorial": {"tf": 1}, "mathgenerator.geometry.radian_to_deg": {"tf": 1}, "mathgenerator.misc.geometric_progression": {"tf": 1}}, "df": 4}, "7": {"docs": {"mathgenerator.misc.geometric_progression": {"tf": 1}, "mathgenerator.misc.set_operation": {"tf": 1}}, "df": 2}, "8": {"9": {"docs": {"mathgenerator.geometry.third_angle_of_triangle": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.algebra.log": {"tf": 1}}, "df": 1}, "9": {"0": {"docs": {"mathgenerator.geometry.basic_trigonometry": {"tf": 1}, "mathgenerator.geometry.complementary_and_supplementary_angle": {"tf": 1}}, "df": 2}, "9": {"9": {"docs": {"mathgenerator.misc.minutes_to_hours": {"tf": 1}, "mathgenerator.misc.signum_function": {"tf": 1.4142135623730951}}, "df": 2}, "docs": {"mathgenerator.algebra.invert_matrix": {"tf": 1}, "mathgenerator.basic_math.addition": {"tf": 1}, "mathgenerator.basic_math.fraction_to_decimal": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.percentage": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.subtraction": {"tf": 1.4142135623730951}, "mathgenerator.computer_science.decimal_to_binary": {"tf": 1}, "mathgenerator.computer_science.modulo_division": {"tf": 1.4142135623730951}, "mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1}}, "df": 8}, "docs": {}, "df": 0}, "docs": {"mathgenerator.get_gen_list": {"tf": 2.6457513110645907}, "mathgenerator.gen_by_id": {"tf": 4.69041575982343}, "mathgenerator.getGenList": {"tf": 2.6457513110645907}, "mathgenerator.genById": {"tf": 4.69041575982343}, "mathgenerator.algebra.basic_algebra": {"tf": 3.7416573867739413}, "mathgenerator.algebra.combine_like_terms": {"tf": 5.477225575051661}, "mathgenerator.algebra.complex_quadratic": {"tf": 4.69041575982343}, "mathgenerator.algebra.compound_interest": {"tf": 5.477225575051661}, "mathgenerator.algebra.distance_two_points": {"tf": 4.69041575982343}, "mathgenerator.algebra.expanding": {"tf": 6.164414002968976}, "mathgenerator.algebra.factoring": {"tf": 4.69041575982343}, "mathgenerator.algebra.int_matrix_22_determinant": {"tf": 3.7416573867739413}, "mathgenerator.algebra.intersection_of_two_lines": {"tf": 7.745966692414834}, "mathgenerator.algebra.invert_matrix": {"tf": 5.744562646538029}, "mathgenerator.algebra.linear_equations": {"tf": 5.477225575051661}, "mathgenerator.algebra.line_equation_from_2_points": {"tf": 3.7416573867739413}, "mathgenerator.algebra.log": {"tf": 4.69041575982343}, "mathgenerator.algebra.matrix_multiplication": {"tf": 4.69041575982343}, "mathgenerator.algebra.midpoint_of_two_points": {"tf": 3.7416573867739413}, "mathgenerator.algebra.multiply_complex_numbers": {"tf": 4.69041575982343}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 4.69041575982343}, "mathgenerator.algebra.quadratic_equation": {"tf": 3.7416573867739413}, "mathgenerator.algebra.simple_interest": {"tf": 5.477225575051661}, "mathgenerator.algebra.system_of_equations": {"tf": 5.477225575051661}, "mathgenerator.algebra.vector_cross": {"tf": 4.69041575982343}, "mathgenerator.algebra.vector_dot": {"tf": 4.69041575982343}, "mathgenerator.basic_math.absolute_difference": {"tf": 4.69041575982343}, "mathgenerator.basic_math.addition": {"tf": 4.69041575982343}, "mathgenerator.basic_math.compare_fractions": {"tf": 3.7416573867739413}, "mathgenerator.basic_math.cube_root": {"tf": 4.69041575982343}, "mathgenerator.basic_math.divide_fractions": {"tf": 3.7416573867739413}, "mathgenerator.basic_math.division": {"tf": 4.69041575982343}, "mathgenerator.basic_math.exponentiation": {"tf": 4.69041575982343}, "mathgenerator.basic_math.factorial": {"tf": 3.7416573867739413}, "mathgenerator.basic_math.fraction_multiplication": {"tf": 3.7416573867739413}, "mathgenerator.basic_math.fraction_to_decimal": {"tf": 4.69041575982343}, "mathgenerator.basic_math.greatest_common_divisor": {"tf": 4.69041575982343}, "mathgenerator.basic_math.is_composite": {"tf": 3.7416573867739413}, "mathgenerator.basic_math.is_prime": {"tf": 3.7416573867739413}, "mathgenerator.basic_math.multiplication": {"tf": 3.7416573867739413}, "mathgenerator.basic_math.percentage": {"tf": 4.69041575982343}, "mathgenerator.basic_math.percentage_difference": {"tf": 4.69041575982343}, "mathgenerator.basic_math.percentage_error": {"tf": 4.69041575982343}, "mathgenerator.basic_math.power_of_powers": {"tf": 4.69041575982343}, "mathgenerator.basic_math.square": {"tf": 3.7416573867739413}, "mathgenerator.basic_math.square_root": {"tf": 4.69041575982343}, "mathgenerator.basic_math.simplify_square_root": {"tf": 3.7416573867739413}, "mathgenerator.basic_math.subtraction": {"tf": 4.69041575982343}, "mathgenerator.calculus.definite_integral": {"tf": 3.7416573867739413}, "mathgenerator.calculus.power_rule_differentiation": {"tf": 5.477225575051661}, "mathgenerator.calculus.power_rule_integration": {"tf": 5.477225575051661}, "mathgenerator.calculus.stationary_points": {"tf": 4.69041575982343}, "mathgenerator.calculus.trig_differentiation": {"tf": 2.6457513110645907}, "mathgenerator.computer_science.bcd_to_decimal": {"tf": 3.7416573867739413}, "mathgenerator.computer_science.binary_2s_complement": {"tf": 3.7416573867739413}, "mathgenerator.computer_science.binary_complement_1s": {"tf": 3.7416573867739413}, "mathgenerator.computer_science.binary_to_decimal": {"tf": 3.7416573867739413}, "mathgenerator.computer_science.binary_to_hex": {"tf": 3.7416573867739413}, "mathgenerator.computer_science.decimal_to_bcd": {"tf": 3.7416573867739413}, "mathgenerator.computer_science.decimal_to_binary": {"tf": 3.7416573867739413}, "mathgenerator.computer_science.decimal_to_hexadeci": {"tf": 3.7416573867739413}, "mathgenerator.computer_science.decimal_to_octal": {"tf": 3.7416573867739413}, "mathgenerator.computer_science.fibonacci_series": {"tf": 3.7416573867739413}, "mathgenerator.computer_science.modulo_division": {"tf": 4.69041575982343}, "mathgenerator.computer_science.nth_fibonacci_number": {"tf": 3.7416573867739413}, "mathgenerator.geometry.angle_btw_vectors": {"tf": 3.7416573867739413}, "mathgenerator.geometry.angle_regular_polygon": {"tf": 4.69041575982343}, "mathgenerator.geometry.arc_length": {"tf": 4.69041575982343}, "mathgenerator.geometry.area_of_circle": {"tf": 3.7416573867739413}, "mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 4.69041575982343}, "mathgenerator.geometry.area_of_triangle": {"tf": 4.69041575982343}, "mathgenerator.geometry.basic_trigonometry": {"tf": 8.12403840463596}, "mathgenerator.geometry.circumference": {"tf": 3.7416573867739413}, "mathgenerator.geometry.complementary_and_supplementary_angle": {"tf": 4.69041575982343}, "mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 4.69041575982343}, "mathgenerator.geometry.degree_to_rad": {"tf": 3.7416573867739413}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 4.69041575982343}, "mathgenerator.geometry.fourth_angle_of_quadrilateral": {"tf": 3.7416573867739413}, "mathgenerator.geometry.perimeter_of_polygons": {"tf": 4.69041575982343}, "mathgenerator.geometry.pythagorean_theorem": {"tf": 3.7416573867739413}, "mathgenerator.geometry.radian_to_deg": {"tf": 3.7416573867739413}, "mathgenerator.geometry.sector_area": {"tf": 4.69041575982343}, "mathgenerator.geometry.sum_of_polygon_angles": {"tf": 3.7416573867739413}, "mathgenerator.geometry.surface_area_cone": {"tf": 5.656854249492381}, "mathgenerator.geometry.surface_area_cube": {"tf": 4.898979485566356}, "mathgenerator.geometry.surface_area_cuboid": {"tf": 4.898979485566356}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 5.656854249492381}, "mathgenerator.geometry.surface_area_pyramid": {"tf": 4}, "mathgenerator.geometry.surface_area_sphere": {"tf": 4.898979485566356}, "mathgenerator.geometry.third_angle_of_triangle": {"tf": 3.7416573867739413}, "mathgenerator.geometry.valid_triangle": {"tf": 3.7416573867739413}, "mathgenerator.geometry.volume_cone": {"tf": 5.656854249492381}, "mathgenerator.geometry.volume_cube": {"tf": 4.898979485566356}, "mathgenerator.geometry.volume_cuboid": {"tf": 4.898979485566356}, "mathgenerator.geometry.volume_cylinder": {"tf": 5.656854249492381}, "mathgenerator.geometry.volume_cone_frustum": {"tf": 6.324555320336759}, "mathgenerator.geometry.volume_hemisphere": {"tf": 3.7416573867739413}, "mathgenerator.geometry.volume_pyramid": {"tf": 6.324555320336759}, "mathgenerator.geometry.volume_sphere": {"tf": 3.7416573867739413}, "mathgenerator.misc.arithmetic_progression_sum": {"tf": 5.477225575051661}, "mathgenerator.misc.arithmetic_progression_term": {"tf": 5.477225575051661}, "mathgenerator.misc.base_conversion": {"tf": 4.69041575982343}, "mathgenerator.misc.binomial_distribution": {"tf": 2.6457513110645907}, "mathgenerator.misc.celsius_to_fahrenheit": {"tf": 3.7416573867739413}, "mathgenerator.misc.common_factors": {"tf": 3.7416573867739413}, "mathgenerator.misc.complex_to_polar": {"tf": 4.69041575982343}, "mathgenerator.misc.decimal_to_roman_numerals": {"tf": 3.7416573867739413}, "mathgenerator.misc.euclidian_norm": {"tf": 3.7416573867739413}, "mathgenerator.misc.factors": {"tf": 3.7416573867739413}, "mathgenerator.misc.geometric_mean": {"tf": 4.69041575982343}, "mathgenerator.misc.geometric_progression": {"tf": 6.782329983125268}, "mathgenerator.misc.harmonic_mean": {"tf": 4.69041575982343}, "mathgenerator.misc.is_leap_year": {"tf": 4.69041575982343}, "mathgenerator.misc.lcm": {"tf": 3.7416573867739413}, "mathgenerator.misc.minutes_to_hours": {"tf": 3.7416573867739413}, "mathgenerator.misc.prime_factors": {"tf": 4.69041575982343}, "mathgenerator.misc.product_of_scientific_notations": {"tf": 4.69041575982343}, "mathgenerator.misc.profit_loss_percent": {"tf": 4.69041575982343}, "mathgenerator.misc.quotient_of_power_same_base": {"tf": 4.69041575982343}, "mathgenerator.misc.quotient_of_power_same_power": {"tf": 4.69041575982343}, "mathgenerator.misc.set_operation": {"tf": 4.69041575982343}, "mathgenerator.misc.signum_function": {"tf": 4.69041575982343}, "mathgenerator.misc.surds_comparison": {"tf": 4.69041575982343}, "mathgenerator.statistics.combinations": {"tf": 3.7416573867739413}, "mathgenerator.statistics.conditional_probability": {"tf": 2.6457513110645907}, "mathgenerator.statistics.confidence_interval": {"tf": 2.6457513110645907}, "mathgenerator.statistics.data_summary": {"tf": 5.477225575051661}, "mathgenerator.statistics.dice_sum_probability": {"tf": 3.7416573867739413}, "mathgenerator.statistics.mean_median": {"tf": 3.7416573867739413}, "mathgenerator.statistics.permutation": {"tf": 3.7416573867739413}}, "df": 130, "i": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.gen_by_id": {"tf": 1}, "mathgenerator.genById": {"tf": 1}}, "df": 2}, "n": {"docs": {"mathgenerator.algebra.invert_matrix": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.algebra.invert_matrix": {"tf": 1}}, "df": 1}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.algebra.invert_matrix": {"tf": 1}}, "df": 1}}}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.basic_math.factorial": {"tf": 1}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.algebra.multiply_complex_numbers": {"tf": 1.4142135623730951}, "mathgenerator.misc.complex_to_polar": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}}}, "a": {"docs": {"mathgenerator.algebra.expanding": {"tf": 1}, "mathgenerator.basic_math.absolute_difference": {"tf": 1}, "mathgenerator.basic_math.division": {"tf": 1}, "mathgenerator.geometry.area_of_triangle": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_sum": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_term": {"tf": 1}}, "df": 6, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.gen_by_id": {"tf": 1}, "mathgenerator.genById": {"tf": 1}}, "df": 2}}}, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.basic_math.addition": {"tf": 1}}, "df": 1}}}}}, "m": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.arc_length": {"tf": 1}, "mathgenerator.geometry.fourth_angle_of_quadrilateral": {"tf": 1}, "mathgenerator.geometry.sector_area": {"tf": 1}, "mathgenerator.geometry.third_angle_of_triangle": {"tf": 1}}, "df": 4, "s": {"docs": {"mathgenerator.geometry.basic_trigonometry": {"tf": 1}}, "df": 1}}}}}}, "k": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.gen_by_id": {"tf": 1}, "mathgenerator.genById": {"tf": 1}}, "df": 2}}}}}}, "m": {"docs": {"mathgenerator.algebra.intersection_of_two_lines": {"tf": 1.4142135623730951}, "mathgenerator.geometry.surface_area_cone": {"tf": 1}, "mathgenerator.geometry.surface_area_cube": {"tf": 1}, "mathgenerator.geometry.surface_area_cuboid": {"tf": 1}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.surface_area_pyramid": {"tf": 1}, "mathgenerator.geometry.surface_area_sphere": {"tf": 1}, "mathgenerator.geometry.volume_cone": {"tf": 1}, "mathgenerator.geometry.volume_cube": {"tf": 1}, "mathgenerator.geometry.volume_cuboid": {"tf": 1}, "mathgenerator.geometry.volume_cylinder": {"tf": 1}, "mathgenerator.geometry.volume_cone_frustum": {"tf": 1}, "mathgenerator.geometry.volume_pyramid": {"tf": 1}}, "df": 13, "a": {"docs": {}, "df": 0, "x": {"docs": {"mathgenerator.algebra.basic_algebra": {"tf": 1}, "mathgenerator.algebra.combine_like_terms": {"tf": 1.7320508075688772}, "mathgenerator.algebra.complex_quadratic": {"tf": 1}, "mathgenerator.algebra.compound_interest": {"tf": 1.7320508075688772}, "mathgenerator.algebra.distance_two_points": {"tf": 1}, "mathgenerator.algebra.int_matrix_22_determinant": {"tf": 1}, "mathgenerator.algebra.intersection_of_two_lines": {"tf": 1.7320508075688772}, "mathgenerator.algebra.invert_matrix": {"tf": 1}, "mathgenerator.algebra.line_equation_from_2_points": {"tf": 1}, "mathgenerator.algebra.log": {"tf": 1.4142135623730951}, "mathgenerator.algebra.matrix_multiplication": {"tf": 1.4142135623730951}, "mathgenerator.algebra.midpoint_of_two_points": {"tf": 1}, "mathgenerator.algebra.multiply_complex_numbers": {"tf": 1}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1.4142135623730951}, "mathgenerator.algebra.quadratic_equation": {"tf": 1}, "mathgenerator.algebra.simple_interest": {"tf": 1.7320508075688772}, "mathgenerator.algebra.vector_cross": {"tf": 1}, "mathgenerator.algebra.vector_dot": {"tf": 1}, "mathgenerator.basic_math.absolute_difference": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.addition": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.compare_fractions": {"tf": 1}, "mathgenerator.basic_math.cube_root": {"tf": 1}, "mathgenerator.basic_math.divide_fractions": {"tf": 1}, "mathgenerator.basic_math.division": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.exponentiation": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.factorial": {"tf": 1}, "mathgenerator.basic_math.fraction_multiplication": {"tf": 1}, "mathgenerator.basic_math.fraction_to_decimal": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.greatest_common_divisor": {"tf": 1}, "mathgenerator.basic_math.is_composite": {"tf": 1}, "mathgenerator.basic_math.is_prime": {"tf": 1}, "mathgenerator.basic_math.multiplication": {"tf": 1}, "mathgenerator.basic_math.percentage": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.percentage_difference": {"tf": 1}, "mathgenerator.basic_math.percentage_error": {"tf": 1}, "mathgenerator.basic_math.power_of_powers": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.square": {"tf": 1}, "mathgenerator.basic_math.square_root": {"tf": 1}, "mathgenerator.basic_math.simplify_square_root": {"tf": 1}, "mathgenerator.basic_math.subtraction": {"tf": 1.4142135623730951}, "mathgenerator.calculus.definite_integral": {"tf": 1}, "mathgenerator.calculus.power_rule_differentiation": {"tf": 1.7320508075688772}, "mathgenerator.calculus.power_rule_integration": {"tf": 1.7320508075688772}, "mathgenerator.calculus.stationary_points": {"tf": 1.4142135623730951}, "mathgenerator.computer_science.bcd_to_decimal": {"tf": 1}, "mathgenerator.computer_science.binary_to_decimal": {"tf": 1}, "mathgenerator.computer_science.binary_to_hex": {"tf": 1}, "mathgenerator.computer_science.decimal_to_bcd": {"tf": 1}, "mathgenerator.computer_science.decimal_to_binary": {"tf": 1}, "mathgenerator.computer_science.decimal_to_hexadeci": {"tf": 1}, "mathgenerator.computer_science.decimal_to_octal": {"tf": 1}, "mathgenerator.computer_science.modulo_division": {"tf": 1.4142135623730951}, "mathgenerator.computer_science.nth_fibonacci_number": {"tf": 1}, "mathgenerator.geometry.angle_btw_vectors": {"tf": 1}, "mathgenerator.geometry.angle_regular_polygon": {"tf": 1}, "mathgenerator.geometry.arc_length": {"tf": 1.4142135623730951}, "mathgenerator.geometry.area_of_circle": {"tf": 1}, "mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1.4142135623730951}, "mathgenerator.geometry.area_of_triangle": {"tf": 1.4142135623730951}, "mathgenerator.geometry.circumference": {"tf": 1}, "mathgenerator.geometry.complementary_and_supplementary_angle": {"tf": 1.4142135623730951}, "mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1.4142135623730951}, "mathgenerator.geometry.degree_to_rad": {"tf": 1}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}, "mathgenerator.geometry.fourth_angle_of_quadrilateral": {"tf": 1}, "mathgenerator.geometry.perimeter_of_polygons": {"tf": 1.4142135623730951}, "mathgenerator.geometry.pythagorean_theorem": {"tf": 1}, "mathgenerator.geometry.radian_to_deg": {"tf": 1}, "mathgenerator.geometry.sector_area": {"tf": 1.4142135623730951}, "mathgenerator.geometry.sum_of_polygon_angles": {"tf": 1}, "mathgenerator.geometry.surface_area_cone": {"tf": 1.4142135623730951}, "mathgenerator.geometry.surface_area_cube": {"tf": 1}, "mathgenerator.geometry.surface_area_cuboid": {"tf": 1}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 1.4142135623730951}, "mathgenerator.geometry.surface_area_sphere": {"tf": 1}, "mathgenerator.geometry.third_angle_of_triangle": {"tf": 1}, "mathgenerator.geometry.valid_triangle": {"tf": 1}, "mathgenerator.geometry.volume_cone": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_cube": {"tf": 1}, "mathgenerator.geometry.volume_cuboid": {"tf": 1}, "mathgenerator.geometry.volume_cylinder": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_cone_frustum": {"tf": 1.7320508075688772}, "mathgenerator.geometry.volume_hemisphere": {"tf": 1}, "mathgenerator.geometry.volume_pyramid": {"tf": 1.7320508075688772}, "mathgenerator.geometry.volume_sphere": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_sum": {"tf": 1.7320508075688772}, "mathgenerator.misc.arithmetic_progression_term": {"tf": 1.7320508075688772}, "mathgenerator.misc.base_conversion": {"tf": 1.4142135623730951}, "mathgenerator.misc.celsius_to_fahrenheit": {"tf": 1}, "mathgenerator.misc.common_factors": {"tf": 1}, "mathgenerator.misc.complex_to_polar": {"tf": 1}, "mathgenerator.misc.decimal_to_roman_numerals": {"tf": 1}, "mathgenerator.misc.factors": {"tf": 1}, "mathgenerator.misc.geometric_mean": {"tf": 1.4142135623730951}, "mathgenerator.misc.geometric_progression": {"tf": 1}, "mathgenerator.misc.harmonic_mean": {"tf": 1.4142135623730951}, "mathgenerator.misc.is_leap_year": {"tf": 1}, "mathgenerator.misc.lcm": {"tf": 1}, "mathgenerator.misc.minutes_to_hours": {"tf": 1}, "mathgenerator.misc.prime_factors": {"tf": 1}, "mathgenerator.misc.product_of_scientific_notations": {"tf": 1}, "mathgenerator.misc.profit_loss_percent": {"tf": 1.4142135623730951}, "mathgenerator.misc.quotient_of_power_same_base": {"tf": 1.4142135623730951}, "mathgenerator.misc.quotient_of_power_same_power": {"tf": 1.4142135623730951}, "mathgenerator.misc.set_operation": {"tf": 1}, "mathgenerator.misc.signum_function": {"tf": 1}, "mathgenerator.misc.surds_comparison": {"tf": 1.4142135623730951}, "mathgenerator.statistics.combinations": {"tf": 1}, "mathgenerator.statistics.data_summary": {"tf": 1}, "mathgenerator.statistics.dice_sum_probability": {"tf": 1}, "mathgenerator.statistics.mean_median": {"tf": 1}, "mathgenerator.statistics.permutation": {"tf": 1}}, "df": 112, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.computer_science.binary_2s_complement": {"tf": 1}, "mathgenerator.computer_science.binary_complement_1s": {"tf": 1}}, "df": 2}}}}}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.misc.euclidian_norm": {"tf": 1}}, "df": 1}}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {"mathgenerator.algebra.int_matrix_22_determinant": {"tf": 1}, "mathgenerator.algebra.invert_matrix": {"tf": 1.4142135623730951}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1}}, "df": 3, "e": {"docs": {"mathgenerator.algebra.invert_matrix": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.algebra.distance_two_points": {"tf": 1}, "mathgenerator.algebra.intersection_of_two_lines": {"tf": 1.7320508075688772}, "mathgenerator.algebra.multiply_complex_numbers": {"tf": 1}, "mathgenerator.algebra.vector_cross": {"tf": 1}, "mathgenerator.algebra.vector_dot": {"tf": 1}, "mathgenerator.basic_math.cube_root": {"tf": 1}, "mathgenerator.basic_math.percentage_difference": {"tf": 1}, "mathgenerator.basic_math.percentage_error": {"tf": 1}, "mathgenerator.basic_math.square_root": {"tf": 1}, "mathgenerator.computer_science.fibonacci_series": {"tf": 1}, "mathgenerator.geometry.angle_regular_polygon": {"tf": 1}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}, "mathgenerator.misc.complex_to_polar": {"tf": 1}, "mathgenerator.misc.geometric_progression": {"tf": 1}, "mathgenerator.misc.prime_factors": {"tf": 1}, "mathgenerator.misc.product_of_scientific_notations": {"tf": 1}, "mathgenerator.misc.set_operation": {"tf": 1}, "mathgenerator.misc.signum_function": {"tf": 1}, "mathgenerator.statistics.data_summary": {"tf": 1}}, "df": 19, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.basic_math.subtraction": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.misc.minutes_to_hours": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.misc.is_leap_year": {"tf": 1}}, "df": 1}}}}}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.algebra.system_of_equations": {"tf": 1}}, "df": 1, "i": {"docs": {"mathgenerator.basic_math.multiplication": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {"mathgenerator.computer_science.modulo_division": {"tf": 1}}, "df": 1}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.algebra.linear_equations": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.algebra.basic_algebra": {"tf": 1}, "mathgenerator.basic_math.simplify_square_root": {"tf": 1}}, "df": 2}}}}}}, "l": {"docs": {"mathgenerator.algebra.distance_two_points": {"tf": 1.4142135623730951}, "mathgenerator.algebra.int_matrix_22_determinant": {"tf": 1}, "mathgenerator.algebra.line_equation_from_2_points": {"tf": 1}, "mathgenerator.algebra.log": {"tf": 1}, "mathgenerator.algebra.matrix_multiplication": {"tf": 1}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1}, "mathgenerator.algebra.quadratic_equation": {"tf": 1}, "mathgenerator.algebra.vector_cross": {"tf": 1.4142135623730951}, "mathgenerator.algebra.vector_dot": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.compare_fractions": {"tf": 1}, "mathgenerator.basic_math.divide_fractions": {"tf": 1}, "mathgenerator.basic_math.fraction_multiplication": {"tf": 1}, "mathgenerator.geometry.angle_regular_polygon": {"tf": 1.4142135623730951}, "mathgenerator.misc.common_factors": {"tf": 1}, "mathgenerator.misc.factors": {"tf": 1}, "mathgenerator.misc.lcm": {"tf": 1}, "mathgenerator.misc.prime_factors": {"tf": 1.4142135623730951}, "mathgenerator.misc.product_of_scientific_notations": {"tf": 1.4142135623730951}, "mathgenerator.statistics.data_summary": {"tf": 1.4142135623730951}}, "df": 19, "u": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.algebra.midpoint_of_two_points": {"tf": 1}, "mathgenerator.basic_math.percentage": {"tf": 1}, "mathgenerator.basic_math.percentage_difference": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.percentage_error": {"tf": 1.4142135623730951}, "mathgenerator.misc.geometric_mean": {"tf": 1}, "mathgenerator.misc.geometric_progression": {"tf": 1.4142135623730951}, "mathgenerator.misc.harmonic_mean": {"tf": 1}, "mathgenerator.misc.surds_comparison": {"tf": 1}}, "df": 8, "s": {"docs": {"mathgenerator.misc.geometric_progression": {"tf": 1}, "mathgenerator.statistics.data_summary": {"tf": 1}}, "df": 2}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {"mathgenerator.algebra.combine_like_terms": {"tf": 1}, "mathgenerator.calculus.definite_integral": {"tf": 1}, "mathgenerator.calculus.power_rule_differentiation": {"tf": 1}, "mathgenerator.calculus.power_rule_integration": {"tf": 1}, "mathgenerator.calculus.stationary_points": {"tf": 1}}, "df": 5, "f": {"docs": {"mathgenerator.algebra.linear_equations": {"tf": 1}, "mathgenerator.algebra.system_of_equations": {"tf": 1}}, "df": 2}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.basic_math.greatest_common_divisor": {"tf": 1}, "mathgenerator.misc.geometric_mean": {"tf": 1}, "mathgenerator.misc.harmonic_mean": {"tf": 1}}, "df": 3}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}}, "s": {"docs": {"mathgenerator.geometry.basic_trigonometry": {"tf": 1}}, "df": 1}, "m": {"docs": {}, "df": 0, "p": {"docs": {"mathgenerator.geometry.complementary_and_supplementary_angle": {"tf": 1}}, "df": 1}}}, "p": {"docs": {"mathgenerator.misc.profit_loss_percent": {"tf": 1}}, "df": 1}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "p": {"docs": {"mathgenerator.algebra.combine_like_terms": {"tf": 1}, "mathgenerator.calculus.power_rule_differentiation": {"tf": 1}, "mathgenerator.calculus.power_rule_integration": {"tf": 1}, "mathgenerator.calculus.stationary_points": {"tf": 1}, "mathgenerator.misc.product_of_scientific_notations": {"tf": 1.4142135623730951}}, "df": 5, "o": {"docs": {"mathgenerator.basic_math.exponentiation": {"tf": 1}}, "df": 1}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.algebra.invert_matrix": {"tf": 1}}, "df": 1, "s": {"docs": {"mathgenerator.algebra.invert_matrix": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"mathgenerator.misc.geometric_progression": {"tf": 1.4142135623730951}}, "df": 1, "s": {"docs": {"mathgenerator.algebra.combine_like_terms": {"tf": 1}, "mathgenerator.calculus.power_rule_differentiation": {"tf": 1}, "mathgenerator.calculus.power_rule_integration": {"tf": 1}}, "df": 3}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {"mathgenerator.misc.celsius_to_fahrenheit": {"tf": 1}}, "df": 1}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.algebra.complex_quadratic": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.algebra.compound_interest": {"tf": 1}, "mathgenerator.algebra.simple_interest": {"tf": 1}}, "df": 2}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.algebra.invert_matrix": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.geometry.basic_trigonometry": {"tf": 1}}, "df": 1}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {"mathgenerator.algebra.complex_quadratic": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.algebra.compound_interest": {"tf": 1}, "mathgenerator.algebra.simple_interest": {"tf": 1}}, "df": 2}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.basic_math.percentage": {"tf": 1}}, "df": 1}}}}}}}}}, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.basic_math.power_of_powers": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_base": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_power": {"tf": 1}}, "df": 3}}}}}, "r": {"1": {"docs": {"mathgenerator.geometry.volume_cone_frustum": {"tf": 1}}, "df": 1}, "2": {"docs": {"mathgenerator.geometry.volume_cone_frustum": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.algebra.complex_quadratic": {"tf": 1}, "mathgenerator.algebra.expanding": {"tf": 2}, "mathgenerator.algebra.factoring": {"tf": 1.4142135623730951}, "mathgenerator.algebra.linear_equations": {"tf": 1.4142135623730951}, "mathgenerator.algebra.system_of_equations": {"tf": 1.7320508075688772}}, "df": 5}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.algebra.compound_interest": {"tf": 1}, "mathgenerator.algebra.simple_interest": {"tf": 1}}, "df": 2}}, "d": {"docs": {"mathgenerator.geometry.radian_to_deg": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.geometry.arc_length": {"tf": 1}, "mathgenerator.geometry.area_of_circle": {"tf": 1}, "mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1}, "mathgenerator.geometry.circumference": {"tf": 1}, "mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.sector_area": {"tf": 1}, "mathgenerator.geometry.surface_area_cone": {"tf": 1}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.volume_cone": {"tf": 1}, "mathgenerator.geometry.volume_cylinder": {"tf": 1}, "mathgenerator.geometry.volume_hemisphere": {"tf": 1}, "mathgenerator.geometry.volume_sphere": {"tf": 1}}, "df": 12}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator.algebra.multiply_complex_numbers": {"tf": 1.4142135623730951}, "mathgenerator.misc.complex_to_polar": {"tf": 1.4142135623730951}}, "df": 2}}, "s": {"docs": {"mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1}, "mathgenerator.basic_math.fraction_to_decimal": {"tf": 1}, "mathgenerator.computer_science.modulo_division": {"tf": 1}}, "df": 3}}, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.misc.surds_comparison": {"tf": 1}}, "df": 1}}}}, "x": {"1": {"docs": {"mathgenerator.algebra.expanding": {"tf": 1}, "mathgenerator.algebra.factoring": {"tf": 1}}, "df": 2}, "2": {"docs": {"mathgenerator.algebra.expanding": {"tf": 1}, "mathgenerator.algebra.factoring": {"tf": 1}}, "df": 2}, "docs": {"mathgenerator.algebra.system_of_equations": {"tf": 1}}, "df": 1, "y": {"docs": {"mathgenerator.algebra.distance_two_points": {"tf": 1.4142135623730951}}, "df": 1}}, "b": {"docs": {"mathgenerator.algebra.expanding": {"tf": 1}, "mathgenerator.algebra.intersection_of_two_lines": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.absolute_difference": {"tf": 1}, "mathgenerator.basic_math.division": {"tf": 1}, "mathgenerator.geometry.area_of_triangle": {"tf": 1}}, "df": 5, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.algebra.log": {"tf": 1}, "mathgenerator.basic_math.exponentiation": {"tf": 1}, "mathgenerator.basic_math.power_of_powers": {"tf": 1}, "mathgenerator.misc.base_conversion": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_base": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_power": {"tf": 1}}, "df": 6}}}}, "d": {"docs": {"mathgenerator.misc.arithmetic_progression_sum": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_term": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.algebra.intersection_of_two_lines": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}, "c": {"docs": {"mathgenerator.computer_science.decimal_to_binary": {"tf": 1}, "mathgenerator.computer_science.decimal_to_hexadeci": {"tf": 1}}, "df": 2, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator.computer_science.decimal_to_octal": {"tf": 1}, "mathgenerator.misc.decimal_to_roman_numerals": {"tf": 1}}, "df": 2}}}}}, "g": {"docs": {"mathgenerator.geometry.degree_to_rad": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "m": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.algebra.invert_matrix": {"tf": 1}}, "df": 1}}}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.basic_math.fraction_to_decimal": {"tf": 1}}, "df": 1}}}, "f": {"docs": {}, "df": 0, "f": {"docs": {"mathgenerator.basic_math.subtraction": {"tf": 1}}, "df": 1}}, "g": {"docs": {"mathgenerator.computer_science.binary_to_decimal": {"tf": 1}, "mathgenerator.computer_science.binary_to_hex": {"tf": 1}}, "df": 2}, "c": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.statistics.dice_sum_probability": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.algebra.invert_matrix": {"tf": 1}, "mathgenerator.basic_math.square": {"tf": 1}}, "df": 2}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {"mathgenerator.basic_math.addition": {"tf": 1}, "mathgenerator.misc.geometric_progression": {"tf": 1}}, "df": 2}, "p": {"docs": {}, "df": 0, "p": {"docs": {"mathgenerator.geometry.complementary_and_supplementary_angle": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.geometry.basic_trigonometry": {"tf": 1}}, "df": 1}, "d": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.surface_area_cube": {"tf": 1}, "mathgenerator.geometry.surface_area_cuboid": {"tf": 1}, "mathgenerator.geometry.surface_area_sphere": {"tf": 1}, "mathgenerator.geometry.valid_triangle": {"tf": 1}, "mathgenerator.geometry.volume_cube": {"tf": 1}, "mathgenerator.geometry.volume_cuboid": {"tf": 1}}, "df": 6, "s": {"docs": {"mathgenerator.geometry.perimeter_of_polygons": {"tf": 1}, "mathgenerator.geometry.sum_of_polygon_angles": {"tf": 1}}, "df": 2}}}, "z": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.misc.set_operation": {"tf": 1.4142135623730951}}, "df": 1}}}, "p": {"docs": {"mathgenerator.misc.profit_loss_percent": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.algebra.invert_matrix": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {"mathgenerator.algebra.linear_equations": {"tf": 1}, "mathgenerator.computer_science.nth_fibonacci_number": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_sum": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_term": {"tf": 1}, "mathgenerator.misc.geometric_progression": {"tf": 1}}, "df": 5, "u": {"docs": {}, "df": 0, "m": {"docs": {"mathgenerator.algebra.multiply_complex_numbers": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.greatest_common_divisor": {"tf": 1}, "mathgenerator.basic_math.is_composite": {"tf": 1}, "mathgenerator.basic_math.is_prime": {"tf": 1}, "mathgenerator.basic_math.square": {"tf": 1}, "mathgenerator.misc.base_conversion": {"tf": 1}, "mathgenerator.misc.complex_to_polar": {"tf": 1.4142135623730951}}, "df": 7, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.computer_science.bcd_to_decimal": {"tf": 1}, "mathgenerator.computer_science.decimal_to_bcd": {"tf": 1}, "mathgenerator.misc.geometric_progression": {"tf": 1}, "mathgenerator.misc.is_leap_year": {"tf": 1}, "mathgenerator.statistics.data_summary": {"tf": 1}}, "df": 5, "s": {"docs": {"mathgenerator.basic_math.greatest_common_divisor": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {"mathgenerator.basic_math.cube_root": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.square_root": {"tf": 1.4142135623730951}, "mathgenerator.computer_science.fibonacci_series": {"tf": 1}}, "df": 3}}, "y": {"docs": {"mathgenerator.algebra.system_of_equations": {"tf": 1}}, "df": 1}, "f": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.geometry.basic_trigonometry": {"tf": 1}}, "df": 1}}}}}}}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.surface_area_cone": {"tf": 1}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.volume_cone": {"tf": 1}, "mathgenerator.geometry.volume_cylinder": {"tf": 1}, "mathgenerator.geometry.volume_cone_frustum": {"tf": 1}, "mathgenerator.geometry.volume_pyramid": {"tf": 1}}, "df": 7}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"mathgenerator.geometry.perimeter_of_polygons": {"tf": 1}, "mathgenerator.geometry.pythagorean_theorem": {"tf": 1}, "mathgenerator.geometry.valid_triangle": {"tf": 1}, "mathgenerator.geometry.volume_pyramid": {"tf": 1}, "mathgenerator.statistics.mean_median": {"tf": 1}}, "df": 5, "g": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"mathgenerator.statistics.combinations": {"tf": 1}, "mathgenerator.statistics.permutation": {"tf": 1}}, "df": 2}}}}}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.geometry.surface_area_cone": {"tf": 1}, "mathgenerator.geometry.surface_area_cube": {"tf": 1}, "mathgenerator.geometry.surface_area_cuboid": {"tf": 1}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.surface_area_pyramid": {"tf": 1}, "mathgenerator.geometry.surface_area_sphere": {"tf": 1}, "mathgenerator.geometry.volume_cone": {"tf": 1}, "mathgenerator.geometry.volume_cube": {"tf": 1}, "mathgenerator.geometry.volume_cuboid": {"tf": 1}, "mathgenerator.geometry.volume_cylinder": {"tf": 1}, "mathgenerator.geometry.volume_cone_frustum": {"tf": 1}, "mathgenerator.geometry.volume_pyramid": {"tf": 1}}, "df": 12}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"mathgenerator.geometry.volume_pyramid": {"tf": 1}}, "df": 1}}}}}}}, "bases": {"root": {"docs": {}, "df": 0}}, "doc": {"root": {"0": {"0": {"0": {"0": {"1": {"1": {"0": {"docs": {"mathgenerator.computer_science.binary_complement_1s": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "1": {"1": {"0": {"docs": {"mathgenerator.computer_science.binary_to_decimal": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "1": {"0": {"1": {"0": {"1": {"docs": {"mathgenerator.computer_science.binary_to_hex": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "4": {"docs": {"mathgenerator.algebra.quadratic_equation": {"tf": 1}, "mathgenerator.basic_math.fraction_to_decimal": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_base": {"tf": 1}}, "df": 3}, "7": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "8": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}, "mathgenerator.geometry.area_of_circle": {"tf": 1}}, "df": 2}, "docs": {"mathgenerator": {"tf": 1.7320508075688772}, "mathgenerator.algebra.basic_algebra": {"tf": 1}, "mathgenerator.algebra.complex_quadratic": {"tf": 1}, "mathgenerator.algebra.invert_matrix": {"tf": 1.4142135623730951}, "mathgenerator.algebra.line_equation_from_2_points": {"tf": 1}, "mathgenerator.algebra.midpoint_of_two_points": {"tf": 1.7320508075688772}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1.4142135623730951}, "mathgenerator.algebra.quadratic_equation": {"tf": 1.4142135623730951}, "mathgenerator.calculus.definite_integral": {"tf": 1}, "mathgenerator.computer_science.fibonacci_series": {"tf": 1}, "mathgenerator.geometry.angle_btw_vectors": {"tf": 1}, "mathgenerator.geometry.angle_regular_polygon": {"tf": 1}, "mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_pyramid": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_sum": {"tf": 1}, "mathgenerator.misc.geometric_progression": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_base": {"tf": 1}}, "df": 17, "x": {"1": {"5": {"docs": {"mathgenerator.computer_science.binary_to_hex": {"tf": 1}}, "df": 1}, "9": {"docs": {}, "df": 0, "a": {"docs": {"mathgenerator.computer_science.decimal_to_hexadeci": {"tf": 1}}, "df": 1}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "o": {"7": {"1": {"6": {"2": {"docs": {"mathgenerator.computer_science.decimal_to_octal": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "\\": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"mathgenerator.misc.complex_to_polar": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "1": {"0": {"0": {"docs": {"mathgenerator.computer_science.decimal_to_binary": {"tf": 1}, "mathgenerator.misc.common_factors": {"tf": 1}}, "df": 2}, "1": {"1": {"docs": {"mathgenerator.computer_science.binary_2s_complement": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.computer_science.binary_2s_complement": {"tf": 1}}, "df": 1}, "2": {"8": {"1": {"6": {"0": {"docs": {"mathgenerator.statistics.permutation": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_term": {"tf": 1}}, "df": 2}, "5": {"8": {"3": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {"mathgenerator.geometry.perimeter_of_polygons": {"tf": 1}}, "df": 1}, "6": {"4": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0, "$": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "m": {"docs": {"mathgenerator.geometry.perimeter_of_polygons": {"tf": 1}}, "df": 1}}}}, "8": {"0": {"docs": {"mathgenerator.geometry.sum_of_polygon_angles": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {"mathgenerator": {"tf": 1.4142135623730951}, "mathgenerator.algebra.midpoint_of_two_points": {"tf": 1}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1}, "mathgenerator.algebra.simple_interest": {"tf": 1}, "mathgenerator.algebra.vector_cross": {"tf": 1}, "mathgenerator.basic_math.percentage_difference": {"tf": 1}, "mathgenerator.computer_science.modulo_division": {"tf": 1}, "mathgenerator.geometry.pythagorean_theorem": {"tf": 1}, "mathgenerator.geometry.third_angle_of_triangle": {"tf": 1}, "mathgenerator.geometry.valid_triangle": {"tf": 1}, "mathgenerator.misc.base_conversion": {"tf": 1}, "mathgenerator.misc.product_of_scientific_notations": {"tf": 1}, "mathgenerator.statistics.data_summary": {"tf": 1}}, "df": 13, "x": {"docs": {"mathgenerator.algebra.linear_equations": {"tf": 1}}, "df": 1}, "\\": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"9": {"docs": {"mathgenerator.basic_math.multiplication": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}, "m": {"docs": {"mathgenerator.geometry.volume_cylinder": {"tf": 1}}, "df": 1}, "t": {"docs": {}, "df": 0, "h": {"docs": {"mathgenerator.misc.geometric_progression": {"tf": 1.4142135623730951}}, "df": 1}}, "^": {"docs": {}, "df": 0, "{": {"6": {"7": {"docs": {"mathgenerator.misc.product_of_scientific_notations": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "8": {"docs": {"mathgenerator.misc.quotient_of_power_same_power": {"tf": 1}}, "df": 1}, "9": {"docs": {"mathgenerator.misc.product_of_scientific_notations": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}, "1": {"1": {"1": {"0": {"0": {"1": {"docs": {"mathgenerator.computer_science.binary_complement_1s": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "2": {"6": {"4": {"docs": {"mathgenerator.misc.geometric_progression": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "3": {"0": {"9": {"7": {"docs": {"mathgenerator.geometry.volume_sphere": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1}, "mathgenerator.geometry.degree_to_rad": {"tf": 1}}, "df": 2}, "docs": {"mathgenerator.algebra.vector_cross": {"tf": 1}, "mathgenerator.misc.factors": {"tf": 1}, "mathgenerator.misc.geometric_progression": {"tf": 1.4142135623730951}, "mathgenerator.misc.product_of_scientific_notations": {"tf": 1}}, "df": 4, "m": {"docs": {"mathgenerator.geometry.surface_area_cuboid": {"tf": 1}, "mathgenerator.geometry.volume_cone": {"tf": 1}, "mathgenerator.geometry.volume_cuboid": {"tf": 1}}, "df": 3}}, "2": {"2": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "6": {"docs": {"mathgenerator.algebra.vector_cross": {"tf": 1}}, "df": 1}, "7": {"4": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "7": {"docs": {"mathgenerator.geometry.sector_area": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "8": {"docs": {"mathgenerator.misc.euclidian_norm": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.algebra.invert_matrix": {"tf": 1}, "mathgenerator.algebra.matrix_multiplication": {"tf": 1}, "mathgenerator.algebra.vector_dot": {"tf": 1}, "mathgenerator.basic_math.absolute_difference": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_term": {"tf": 1}}, "df": 5}, "3": {"3": {"docs": {"mathgenerator.basic_math.percentage_difference": {"tf": 1}, "mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 2}, "4": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "5": {"docs": {"mathgenerator.geometry.angle_regular_polygon": {"tf": 1}}, "df": 1}, "6": {"3": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {"mathgenerator.algebra.invert_matrix": {"tf": 1}, "mathgenerator.algebra.linear_equations": {"tf": 1}, "mathgenerator.computer_science.fibonacci_series": {"tf": 1}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}, "mathgenerator.geometry.pythagorean_theorem": {"tf": 1}, "mathgenerator.misc.minutes_to_hours": {"tf": 1}, "mathgenerator.statistics.data_summary": {"tf": 1}}, "df": 7, "m": {"docs": {"mathgenerator.geometry.volume_cuboid": {"tf": 1}}, "df": 1}}, "4": {"1": {"docs": {"mathgenerator.algebra.linear_equations": {"tf": 1}, "mathgenerator.geometry.arc_length": {"tf": 1}}, "df": 2}, "5": {"docs": {"mathgenerator.misc.arithmetic_progression_sum": {"tf": 1}}, "df": 1}, "8": {"docs": {"mathgenerator.geometry.third_angle_of_triangle": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1.7320508075688772}, "mathgenerator.geometry.valid_triangle": {"tf": 1}, "mathgenerator.geometry.volume_hemisphere": {"tf": 1}}, "df": 3, "+": {"1": {"5": {"docs": {}, "df": 0, "j": {"docs": {"mathgenerator.algebra.multiply_complex_numbers": {"tf": 1}}, "df": 1}}, "8": {"docs": {}, "df": 0, "j": {"docs": {"mathgenerator.algebra.multiply_complex_numbers": {"tf": 1}}, "df": 1}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "5": {"6": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.algebra.distance_two_points": {"tf": 1}, "mathgenerator.algebra.matrix_multiplication": {"tf": 1}, "mathgenerator.geometry.angle_btw_vectors": {"tf": 1}, "mathgenerator.geometry.complementary_and_supplementary_angle": {"tf": 1}, "mathgenerator.statistics.data_summary": {"tf": 1}}, "df": 5, "m": {"docs": {"mathgenerator.geometry.surface_area_cylinder": {"tf": 1}}, "df": 1}}, "6": {"2": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}, "mathgenerator.geometry.fourth_angle_of_quadrilateral": {"tf": 1}}, "df": 2}, "9": {"docs": {"mathgenerator.misc.quotient_of_power_same_power": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.algebra.distance_two_points": {"tf": 1}, "mathgenerator.algebra.vector_cross": {"tf": 1}, "mathgenerator.misc.factors": {"tf": 1}, "mathgenerator.statistics.conditional_probability": {"tf": 1}}, "df": 4, "x": {"docs": {"mathgenerator.algebra.linear_equations": {"tf": 1}}, "df": 1, "^": {"docs": {}, "df": 0, "{": {"3": {"docs": {"mathgenerator.calculus.power_rule_differentiation": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}, "7": {"1": {"docs": {"mathgenerator.basic_math.is_composite": {"tf": 1}}, "df": 1}, "2": {"2": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.algebra.complex_quadratic": {"tf": 1}}, "df": 1}, "6": {"4": {"docs": {"mathgenerator.geometry.volume_pyramid": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.misc.factors": {"tf": 1.4142135623730951}, "mathgenerator.misc.geometric_progression": {"tf": 1}}, "df": 2}, "8": {"0": {"1": {"docs": {"mathgenerator.computer_science.bcd_to_decimal": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"mathgenerator.basic_math.percentage": {"tf": 1}, "mathgenerator.misc.binomial_distribution": {"tf": 1}}, "df": 2, "y": {"docs": {"mathgenerator.algebra.linear_equations": {"tf": 1}}, "df": 1}, "^": {"2": {"docs": {"mathgenerator.basic_math.square": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "m": {"docs": {"mathgenerator.geometry.volume_cuboid": {"tf": 1}}, "df": 1}}, "8": {"4": {"docs": {"mathgenerator.geometry.arc_length": {"tf": 1}}, "df": 1}, "6": {"docs": {"mathgenerator.statistics.data_summary": {"tf": 1}}, "df": 1}, "8": {"docs": {"mathgenerator.algebra.vector_dot": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}, "mathgenerator.algebra.midpoint_of_two_points": {"tf": 1}, "mathgenerator.geometry.volume_pyramid": {"tf": 1}, "mathgenerator.misc.lcm": {"tf": 1.4142135623730951}, "mathgenerator.statistics.conditional_probability": {"tf": 1}, "mathgenerator.statistics.permutation": {"tf": 1}}, "df": 6, "^": {"docs": {}, "df": 0, "{": {"1": {"0": {"docs": {}, "df": 0, "^": {"docs": {}, "df": 0, "{": {"8": {"docs": {"mathgenerator.basic_math.power_of_powers": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}, "docs": {}, "df": 0}, "8": {"0": {"docs": {"mathgenerator.basic_math.power_of_powers": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}, "9": {"1": {"0": {"1": {"5": {"docs": {"mathgenerator.computer_science.decimal_to_bcd": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"2": {"6": {"9": {"0": {"0": {"0": {"3": {"1": {"3": {"4": {"4": {"docs": {"mathgenerator.misc.euclidian_norm": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "5": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "6": {"0": {"3": {"docs": {"mathgenerator.geometry.volume_cone_frustum": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "7": {"4": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {"mathgenerator.algebra.distance_two_points": {"tf": 1}, "mathgenerator.algebra.line_equation_from_2_points": {"tf": 1}, "mathgenerator.algebra.quadratic_equation": {"tf": 1}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}, "mathgenerator.misc.complex_to_polar": {"tf": 1.4142135623730951}, "mathgenerator.statistics.combinations": {"tf": 1}, "mathgenerator.statistics.data_summary": {"tf": 1}, "mathgenerator.statistics.mean_median": {"tf": 1}}, "df": 8, "m": {"docs": {"mathgenerator.geometry.volume_cube": {"tf": 1}}, "df": 1}, "^": {"docs": {}, "df": 0, "{": {"8": {"docs": {"mathgenerator.misc.quotient_of_power_same_power": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}, "/": {"1": {"0": {"docs": {"mathgenerator.misc.quotient_of_power_same_power": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "docs": {"mathgenerator": {"tf": 1.7320508075688772}, "mathgenerator.algebra.complex_quadratic": {"tf": 1.7320508075688772}, "mathgenerator.algebra.invert_matrix": {"tf": 2.23606797749979}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1}, "mathgenerator.algebra.simple_interest": {"tf": 1}, "mathgenerator.algebra.vector_cross": {"tf": 1.4142135623730951}, "mathgenerator.algebra.vector_dot": {"tf": 1}, "mathgenerator.basic_math.fraction_to_decimal": {"tf": 1}, "mathgenerator.calculus.definite_integral": {"tf": 1}, "mathgenerator.computer_science.fibonacci_series": {"tf": 1.4142135623730951}, "mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1.4142135623730951}, "mathgenerator.geometry.area_of_triangle": {"tf": 1}, "mathgenerator.geometry.degree_to_rad": {"tf": 1}, "mathgenerator.misc.common_factors": {"tf": 1}, "mathgenerator.misc.factors": {"tf": 1}, "mathgenerator.misc.product_of_scientific_notations": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_power": {"tf": 1}, "mathgenerator.misc.set_operation": {"tf": 2}, "mathgenerator.misc.signum_function": {"tf": 1}, "mathgenerator.statistics.conditional_probability": {"tf": 1}}, "df": 20, "x": {"docs": {"mathgenerator.algebra.basic_algebra": {"tf": 1}}, "df": 1, "^": {"docs": {}, "df": 0, "{": {"5": {"docs": {"mathgenerator.calculus.power_rule_differentiation": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}, "s": {"docs": {"mathgenerator.computer_science.binary_complement_1s": {"tf": 1}}, "df": 1}}, "2": {"0": {"0": {"0": {"docs": {"mathgenerator.misc.is_leap_year": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0}, "3": {"docs": {"mathgenerator.statistics.confidence_interval": {"tf": 1}}, "df": 1}, "8": {"docs": {"mathgenerator.statistics.confidence_interval": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1.4142135623730951}, "mathgenerator.misc.binomial_distribution": {"tf": 1}}, "df": 2, "y": {"docs": {"mathgenerator.algebra.linear_equations": {"tf": 1}}, "df": 1}, "m": {"docs": {"mathgenerator.geometry.surface_area_cuboid": {"tf": 1}, "mathgenerator.geometry.volume_cone_frustum": {"tf": 1}}, "df": 2}}, "1": {"0": {"docs": {"mathgenerator.statistics.confidence_interval": {"tf": 1}}, "df": 1}, "2": {"docs": {"mathgenerator.statistics.confidence_interval": {"tf": 1}}, "df": 1}, "4": {"docs": {"mathgenerator.statistics.confidence_interval": {"tf": 1}}, "df": 1}, "5": {"6": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "6": {"5": {"docs": {"mathgenerator.algebra.simple_interest": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.geometry.surface_area_cube": {"tf": 1}}, "df": 1, "\\": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"2": {"4": {"docs": {"mathgenerator.basic_math.division": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}}, "9": {"docs": {"mathgenerator.statistics.confidence_interval": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}, "mathgenerator.computer_science.fibonacci_series": {"tf": 1}, "mathgenerator.misc.geometric_mean": {"tf": 1}, "mathgenerator.statistics.mean_median": {"tf": 1}}, "df": 4}, "2": {"1": {"docs": {"mathgenerator.statistics.confidence_interval": {"tf": 1}}, "df": 1}, "3": {"docs": {"mathgenerator.statistics.confidence_interval": {"tf": 1}}, "df": 1}, "9": {"docs": {"mathgenerator.misc.signum_function": {"tf": 1}, "mathgenerator.statistics.confidence_interval": {"tf": 1}}, "df": 2}, "docs": {"mathgenerator.basic_math.absolute_difference": {"tf": 1}, "mathgenerator.basic_math.subtraction": {"tf": 1}, "mathgenerator.geometry.angle_btw_vectors": {"tf": 1}, "mathgenerator.geometry.third_angle_of_triangle": {"tf": 1}, "mathgenerator.misc.factors": {"tf": 1}, "mathgenerator.statistics.mean_median": {"tf": 1}}, "df": 6, "x": {"docs": {}, "df": 0, "^": {"2": {"docs": {}, "df": 0, "+": {"1": {"3": {"7": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "+": {"2": {"5": {"docs": {"mathgenerator.algebra.quadratic_equation": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "docs": {}, "df": 0}}, "+": {"3": {"4": {"docs": {"mathgenerator.basic_math.addition": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "3": {"0": {"0": {"2": {"1": {"1": {"0": {"docs": {"mathgenerator.misc.base_conversion": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "2": {"docs": {"mathgenerator.statistics.confidence_interval": {"tf": 1}}, "df": 1}, "4": {"docs": {"mathgenerator.statistics.confidence_interval": {"tf": 1}}, "df": 1}, "5": {"docs": {"mathgenerator.statistics.confidence_interval": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"0": {"0": {"docs": {"mathgenerator.geometry.surface_area_pyramid": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "1": {"docs": {"mathgenerator.misc.arithmetic_progression_sum": {"tf": 1}}, "df": 1}, "2": {"2": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "3": {"1": {"docs": {"mathgenerator.geometry.volume_cuboid": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.algebra.log": {"tf": 1}, "mathgenerator.misc.euclidian_norm": {"tf": 1}}, "df": 2}, "5": {"docs": {"mathgenerator.statistics.confidence_interval": {"tf": 1}}, "df": 1}, "8": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.algebra.factoring": {"tf": 1}, "mathgenerator.basic_math.factorial": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_term": {"tf": 1}}, "df": 3}, "5": {"2": {"docs": {"mathgenerator.statistics.confidence_interval": {"tf": 1}}, "df": 1}, "4": {"3": {"4": {"docs": {"mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "6": {"docs": {"mathgenerator.statistics.confidence_interval": {"tf": 1}}, "df": 1}, "8": {"docs": {"mathgenerator.statistics.confidence_interval": {"tf": 1}}, "df": 1}, "9": {"6": {"9": {"5": {"4": {"9": {"6": {"9": {"1": {"1": {"1": {"2": {"3": {"3": {"2": {"8": {"docs": {"mathgenerator.computer_science.nth_fibonacci_number": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"mathgenerator.geometry.surface_area_sphere": {"tf": 1}, "mathgenerator.misc.harmonic_mean": {"tf": 1}}, "df": 2, "m": {"docs": {"mathgenerator.geometry.surface_area_pyramid": {"tf": 1}}, "df": 1}}, "6": {"0": {"4": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "1": {"8": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "3": {"2": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.misc.euclidian_norm": {"tf": 1}, "mathgenerator.statistics.confidence_interval": {"tf": 1}}, "df": 2}, "4": {"2": {"docs": {"mathgenerator.geometry.area_of_circle": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "7": {"9": {"docs": {"mathgenerator.algebra.compound_interest": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.statistics.confidence_interval": {"tf": 1}}, "df": 1}, "8": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "9": {"2": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}, "mathgenerator.statistics.data_summary": {"tf": 1}}, "df": 2, "m": {"docs": {"mathgenerator.geometry.surface_area_cone": {"tf": 1}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 1}}, "df": 2}}, "7": {"1": {"3": {"2": {"docs": {"mathgenerator.statistics.combinations": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "8": {"docs": {"mathgenerator.statistics.confidence_interval": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}, "mathgenerator.statistics.data_summary": {"tf": 1}}, "df": 2}, "8": {"0": {"docs": {"mathgenerator.statistics.confidence_interval": {"tf": 1}}, "df": 1}, "1": {"6": {"docs": {"mathgenerator.misc.geometric_progression": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.statistics.confidence_interval": {"tf": 1}}, "df": 1}, "8": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "9": {"docs": {"mathgenerator.basic_math.square": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}, "mathgenerator.algebra.system_of_equations": {"tf": 1}, "mathgenerator.statistics.data_summary": {"tf": 1}}, "df": 3, "x": {"docs": {}, "df": 0, "^": {"2": {"docs": {"mathgenerator.calculus.definite_integral": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0, "{": {"6": {"docs": {"mathgenerator.calculus.power_rule_differentiation": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}, "9": {"0": {"docs": {"mathgenerator.misc.profit_loss_percent": {"tf": 1}}, "df": 1}, "5": {"docs": {"mathgenerator.statistics.confidence_interval": {"tf": 1}}, "df": 1}, "7": {"docs": {"mathgenerator.statistics.confidence_interval": {"tf": 1}}, "df": 1}, "9": {"docs": {"mathgenerator.statistics.confidence_interval": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.geometry.area_of_circle": {"tf": 1}, "mathgenerator.statistics.data_summary": {"tf": 1.4142135623730951}}, "df": 2}, "docs": {"mathgenerator.algebra.distance_two_points": {"tf": 1}, "mathgenerator.algebra.invert_matrix": {"tf": 1}, "mathgenerator.algebra.line_equation_from_2_points": {"tf": 1}, "mathgenerator.algebra.matrix_multiplication": {"tf": 1}, "mathgenerator.algebra.multiply_complex_numbers": {"tf": 1}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1}, "mathgenerator.algebra.vector_cross": {"tf": 1}, "mathgenerator.algebra.vector_dot": {"tf": 1}, "mathgenerator.basic_math.cube_root": {"tf": 1}, "mathgenerator.basic_math.percentage_difference": {"tf": 1}, "mathgenerator.computer_science.binary_2s_complement": {"tf": 1.4142135623730951}, "mathgenerator.computer_science.fibonacci_series": {"tf": 1}, "mathgenerator.geometry.angle_btw_vectors": {"tf": 1}, "mathgenerator.misc.binomial_distribution": {"tf": 1}, "mathgenerator.misc.common_factors": {"tf": 1}, "mathgenerator.misc.complex_to_polar": {"tf": 1}, "mathgenerator.misc.factors": {"tf": 1}, "mathgenerator.misc.prime_factors": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_base": {"tf": 1}, "mathgenerator.misc.set_operation": {"tf": 2}, "mathgenerator.statistics.data_summary": {"tf": 1}, "mathgenerator.statistics.dice_sum_probability": {"tf": 1}}, "df": 22, "x": {"2": {"docs": {"mathgenerator.algebra.int_matrix_22_determinant": {"tf": 1}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0, "^": {"docs": {}, "df": 0, "{": {"6": {"docs": {"mathgenerator.calculus.power_rule_integration": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}, "}": {"docs": {}, "df": 0, "{": {"6": {"docs": {}, "df": 0, "}": {"docs": {}, "df": 0, "x": {"docs": {"mathgenerator.algebra.intersection_of_two_lines": {"tf": 1}}, "df": 1}}}, "docs": {}, "df": 0}}, "y": {"docs": {"mathgenerator.algebra.system_of_equations": {"tf": 1}}, "df": 1}}, "3": {"0": {"1": {"8": {"6": {"docs": {"mathgenerator.geometry.arc_length": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"mathgenerator.geometry.basic_trigonometry": {"tf": 1}, "mathgenerator.geometry.perimeter_of_polygons": {"tf": 1}, "mathgenerator.geometry.volume_sphere": {"tf": 1}, "mathgenerator.misc.binomial_distribution": {"tf": 1}, "mathgenerator.misc.prime_factors": {"tf": 1}}, "df": 5, "m": {"docs": {"mathgenerator.geometry.surface_area_pyramid": {"tf": 1}, "mathgenerator.geometry.volume_cone_frustum": {"tf": 1}}, "df": 2}}, "1": {"0": {"docs": {"mathgenerator.algebra.linear_equations": {"tf": 1}}, "df": 1}, "8": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "9": {"docs": {"mathgenerator.geometry.perimeter_of_polygons": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.geometry.valid_triangle": {"tf": 1}, "mathgenerator.statistics.confidence_interval": {"tf": 1}}, "df": 2}, "2": {"docs": {"mathgenerator.basic_math.percentage_error": {"tf": 1}, "mathgenerator.basic_math.subtraction": {"tf": 1}}, "df": 2, "x": {"docs": {"mathgenerator.calculus.definite_integral": {"tf": 1}}, "df": 1}, "m": {"docs": {"mathgenerator.geometry.volume_hemisphere": {"tf": 1}}, "df": 1}}, "3": {"6": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.basic_math.percentage_difference": {"tf": 1}, "mathgenerator.calculus.definite_integral": {"tf": 1}, "mathgenerator.computer_science.modulo_division": {"tf": 1}, "mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1}, "mathgenerator.misc.harmonic_mean": {"tf": 1}, "mathgenerator.statistics.confidence_interval": {"tf": 1}, "mathgenerator.statistics.data_summary": {"tf": 1}}, "df": 7}, "4": {"1": {"6": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "6": {"9": {"docs": {"mathgenerator.algebra.compound_interest": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "9": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.basic_math.absolute_difference": {"tf": 1}, "mathgenerator.statistics.data_summary": {"tf": 1}}, "df": 2}, "5": {"1": {"docs": {"mathgenerator.geometry.circumference": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "6": {"3": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "4": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "9": {"8": {"docs": {"mathgenerator.computer_science.decimal_to_octal": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {"mathgenerator.geometry.volume_sphere": {"tf": 1}}, "df": 1}, "7": {"2": {"4": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "6": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "7": {"3": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {"mathgenerator.basic_math.is_prime": {"tf": 1}, "mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 2}, "8": {"4": {"4": {"7": {"7": {"5": {"docs": {"mathgenerator.misc.geometric_progression": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "6": {"4": {"docs": {"mathgenerator.geometry.surface_area_cylinder": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {"mathgenerator.algebra.compound_interest": {"tf": 1}, "mathgenerator.misc.profit_loss_percent": {"tf": 1}, "mathgenerator.statistics.data_summary": {"tf": 1}}, "df": 3}, "9": {"2": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.basic_math.percentage": {"tf": 1}, "mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 2}, "docs": {"mathgenerator.algebra.compound_interest": {"tf": 1}, "mathgenerator.algebra.expanding": {"tf": 1}, "mathgenerator.algebra.intersection_of_two_lines": {"tf": 1}, "mathgenerator.algebra.invert_matrix": {"tf": 1.4142135623730951}, "mathgenerator.algebra.log": {"tf": 1}, "mathgenerator.algebra.simple_interest": {"tf": 1}, "mathgenerator.computer_science.fibonacci_series": {"tf": 1}, "mathgenerator.geometry.area_of_triangle": {"tf": 1}, "mathgenerator.misc.binomial_distribution": {"tf": 1}, "mathgenerator.misc.geometric_mean": {"tf": 1}, "mathgenerator.misc.lcm": {"tf": 1}, "mathgenerator.misc.prime_factors": {"tf": 1}, "mathgenerator.misc.product_of_scientific_notations": {"tf": 1}, "mathgenerator.statistics.mean_median": {"tf": 1}}, "df": 14, "x": {"docs": {"mathgenerator.algebra.expanding": {"tf": 1}}, "df": 1, "^": {"docs": {}, "df": 0, "{": {"1": {"7": {"docs": {"mathgenerator.algebra.combine_like_terms": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0}, "2": {"docs": {"mathgenerator.algebra.combine_like_terms": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0}}}, "\\": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "{": {"7": {"docs": {"mathgenerator.basic_math.simplify_square_root": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}}, "m": {"docs": {"mathgenerator.geometry.volume_cylinder": {"tf": 1}}, "df": 1}}, "4": {"0": {"2": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "8": {"8": {"7": {"8": {"2": {"9": {"2": {"8": {"1": {"5": {"6": {"4": {"docs": {"mathgenerator.misc.euclidian_norm": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"mathgenerator.algebra.int_matrix_22_determinant": {"tf": 1}}, "df": 1, "m": {"docs": {"mathgenerator.geometry.surface_area_pyramid": {"tf": 1}}, "df": 1}}, "1": {"0": {"docs": {"mathgenerator.computer_science.decimal_to_hexadeci": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"3": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "6": {"3": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1.4142135623730951}, "mathgenerator.geometry.angle_btw_vectors": {"tf": 1.4142135623730951}, "mathgenerator.geometry.sector_area": {"tf": 1}, "mathgenerator.geometry.volume_pyramid": {"tf": 1}, "mathgenerator.misc.complex_to_polar": {"tf": 1}}, "df": 5, "^": {"docs": {}, "df": 0, "{": {"docs": {}, "df": 0, "\\": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "{": {"1": {"docs": {}, "df": 0, "}": {"docs": {}, "df": 0, "{": {"2": {"docs": {"mathgenerator.misc.surds_comparison": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}, "docs": {}, "df": 0}}}}}}}}}, "3": {"6": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.computer_science.modulo_division": {"tf": 1}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}, "mathgenerator.geometry.fourth_angle_of_quadrilateral": {"tf": 1}, "mathgenerator.statistics.mean_median": {"tf": 1.4142135623730951}}, "df": 4}, "4": {"0": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}, "mathgenerator.geometry.arc_length": {"tf": 1}, "mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_sum": {"tf": 1}, "mathgenerator.misc.common_factors": {"tf": 1}, "mathgenerator.misc.factors": {"tf": 1}, "mathgenerator.misc.geometric_progression": {"tf": 1}, "mathgenerator.statistics.data_summary": {"tf": 1}, "mathgenerator.statistics.mean_median": {"tf": 1}}, "df": 9, "m": {"docs": {"mathgenerator.geometry.volume_cone": {"tf": 1}}, "df": 1}}, "5": {"0": {"5": {"6": {"docs": {"mathgenerator.misc.geometric_progression": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "2": {"0": {"4": {"docs": {"mathgenerator.misc.base_conversion": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "3": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1}, "mathgenerator.algebra.vector_cross": {"tf": 1}, "mathgenerator.basic_math.percentage": {"tf": 1}, "mathgenerator.geometry.pythagorean_theorem": {"tf": 1}}, "df": 4, "^": {"docs": {}, "df": 0, "{": {"docs": {}, "df": 0, "\\": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "{": {"1": {"docs": {}, "df": 0, "}": {"docs": {}, "df": 0, "{": {"5": {"docs": {"mathgenerator.misc.surds_comparison": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}, "docs": {}, "df": 0}}}}}}}}}, "6": {"docs": {"mathgenerator.misc.celsius_to_fahrenheit": {"tf": 1}, "mathgenerator.statistics.data_summary": {"tf": 1.4142135623730951}}, "df": 2}, "7": {"8": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}, "mathgenerator.statistics.mean_median": {"tf": 1}}, "df": 2}, "8": {"3": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "8": {"0": {"7": {"5": {"6": {"0": {"8": {"docs": {"mathgenerator.basic_math.greatest_common_divisor": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "9": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.percentage_error": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_sum": {"tf": 1}}, "df": 3}, "docs": {"mathgenerator.algebra.factoring": {"tf": 1}, "mathgenerator.algebra.invert_matrix": {"tf": 1.7320508075688772}, "mathgenerator.algebra.system_of_equations": {"tf": 1}, "mathgenerator.algebra.vector_cross": {"tf": 1}, "mathgenerator.basic_math.factorial": {"tf": 1}, "mathgenerator.computer_science.bcd_to_decimal": {"tf": 1}, "mathgenerator.computer_science.decimal_to_binary": {"tf": 1}, "mathgenerator.geometry.perimeter_of_polygons": {"tf": 1}, "mathgenerator.misc.base_conversion": {"tf": 1}, "mathgenerator.misc.common_factors": {"tf": 1}, "mathgenerator.misc.complex_to_polar": {"tf": 1}, "mathgenerator.misc.factors": {"tf": 1}, "mathgenerator.misc.geometric_progression": {"tf": 1}, "mathgenerator.misc.harmonic_mean": {"tf": 1}, "mathgenerator.misc.set_operation": {"tf": 2}, "mathgenerator.statistics.mean_median": {"tf": 1}}, "df": 16, "x": {"docs": {"mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}}, "df": 1, "^": {"docs": {}, "df": 0, "{": {"3": {"docs": {"mathgenerator.calculus.power_rule_integration": {"tf": 1}}, "df": 1}, "4": {"docs": {"mathgenerator.calculus.power_rule_differentiation": {"tf": 1}}, "df": 1}, "7": {"docs": {"mathgenerator.calculus.power_rule_differentiation": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}, "5": {"0": {"6": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.misc.celsius_to_fahrenheit": {"tf": 1}, "mathgenerator.misc.geometric_mean": {"tf": 1}}, "df": 2}, "1": {"3": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "2": {"docs": {"mathgenerator.misc.harmonic_mean": {"tf": 1}}, "df": 1}, "3": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "4": {"docs": {"mathgenerator.algebra.vector_cross": {"tf": 1}, "mathgenerator.basic_math.subtraction": {"tf": 1}, "mathgenerator.geometry.angle_btw_vectors": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_cone_frustum": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_term": {"tf": 1}}, "df": 5}, "5": {"7": {"5": {"docs": {"mathgenerator.geometry.volume_cone": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}, "mathgenerator.basic_math.percentage": {"tf": 1}}, "df": 2}, "6": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}, "mathgenerator.basic_math.addition": {"tf": 1}, "mathgenerator.geometry.angle_btw_vectors": {"tf": 1}, "mathgenerator.geometry.circumference": {"tf": 1}, "mathgenerator.misc.binomial_distribution": {"tf": 1}, "mathgenerator.misc.harmonic_mean": {"tf": 1}, "mathgenerator.misc.minutes_to_hours": {"tf": 1}}, "df": 7}, "7": {"3": {"3": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}, "mathgenerator.misc.harmonic_mean": {"tf": 1}}, "df": 2}, "8": {"8": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "9": {"5": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "9": {"3": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}, "mathgenerator.geometry.angle_btw_vectors": {"tf": 1}, "mathgenerator.misc.product_of_scientific_notations": {"tf": 1}}, "df": 3}, "docs": {"mathgenerator.algebra.basic_algebra": {"tf": 1.4142135623730951}, "mathgenerator.algebra.invert_matrix": {"tf": 1.7320508075688772}, "mathgenerator.algebra.linear_equations": {"tf": 1}, "mathgenerator.algebra.log": {"tf": 1}, "mathgenerator.algebra.midpoint_of_two_points": {"tf": 1.4142135623730951}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.cube_root": {"tf": 1}, "mathgenerator.computer_science.fibonacci_series": {"tf": 1}, "mathgenerator.geometry.angle_btw_vectors": {"tf": 1}, "mathgenerator.misc.prime_factors": {"tf": 1}, "mathgenerator.misc.product_of_scientific_notations": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_base": {"tf": 1}, "mathgenerator.misc.set_operation": {"tf": 2}, "mathgenerator.statistics.dice_sum_probability": {"tf": 1}, "mathgenerator.statistics.mean_median": {"tf": 1}, "mathgenerator.statistics.permutation": {"tf": 1}}, "df": 16, "x": {"docs": {}, "df": 0, "^": {"docs": {}, "df": 0, "{": {"1": {"9": {"docs": {"mathgenerator.algebra.combine_like_terms": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0}, "4": {"docs": {"mathgenerator.calculus.power_rule_differentiation": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}, "y": {"docs": {"mathgenerator.algebra.system_of_equations": {"tf": 1}}, "df": 1}, "^": {"docs": {}, "df": 0, "{": {"6": {"docs": {"mathgenerator.misc.quotient_of_power_same_base": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"mathgenerator.misc.quotient_of_power_same_base": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}, "6": {"0": {"2": {"docs": {"mathgenerator.misc.harmonic_mean": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.basic_math.percentage_error": {"tf": 1}, "mathgenerator.geometry.angle_btw_vectors": {"tf": 1}, "mathgenerator.statistics.mean_median": {"tf": 1}}, "df": 3}, "1": {"2": {"1": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "6": {"docs": {"mathgenerator.geometry.surface_area_cone": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.misc.profit_loss_percent": {"tf": 1}}, "df": 1}, "4": {"8": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}, "mathgenerator.algebra.system_of_equations": {"tf": 1}, "mathgenerator.misc.product_of_scientific_notations": {"tf": 1}}, "df": 3}, "5": {"7": {"5": {"docs": {"mathgenerator.computer_science.decimal_to_bcd": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "9": {"docs": {"mathgenerator.misc.euclidian_norm": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.statistics.data_summary": {"tf": 1}}, "df": 1}, "6": {"6": {"4": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {"mathgenerator.calculus.definite_integral": {"tf": 1}}, "df": 1}, "7": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "8": {"5": {"9": {"docs": {"mathgenerator.geometry.volume_cube": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "6": {"2": {"9": {"docs": {"mathgenerator.geometry.volume_hemisphere": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}, "mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 2}, "9": {"9": {"6": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}, "mathgenerator.geometry.sector_area": {"tf": 1}}, "df": 2}, "docs": {"mathgenerator.algebra.complex_quadratic": {"tf": 1}, "mathgenerator.algebra.distance_two_points": {"tf": 1}, "mathgenerator.algebra.expanding": {"tf": 1}, "mathgenerator.algebra.matrix_multiplication": {"tf": 1}, "mathgenerator.algebra.quadratic_equation": {"tf": 1}, "mathgenerator.calculus.stationary_points": {"tf": 1.4142135623730951}, "mathgenerator.computer_science.binary_to_decimal": {"tf": 1}, "mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1.4142135623730951}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}, "mathgenerator.statistics.combinations": {"tf": 1}}, "df": 10, "x": {"docs": {}, "df": 0, "^": {"docs": {}, "df": 0, "{": {"9": {"docs": {"mathgenerator.algebra.combine_like_terms": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0}}}, "m": {"docs": {"mathgenerator.geometry.surface_area_cone": {"tf": 1}, "mathgenerator.geometry.surface_area_cube": {"tf": 1}}, "df": 2}}, "7": {"0": {"0": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "4": {"docs": {"mathgenerator.misc.geometric_progression": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "1": {"2": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "3": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "2": {"1": {"7": {"docs": {"mathgenerator.algebra.simple_interest": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "2": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}, "mathgenerator.misc.geometric_mean": {"tf": 1}}, "df": 2}, "3": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}, "mathgenerator.statistics.conditional_probability": {"tf": 1}}, "df": 2}, "4": {"docs": {}, "df": 0, "+": {"4": {"6": {"2": {"docs": {}, "df": 0, "j": {"docs": {"mathgenerator.algebra.multiply_complex_numbers": {"tf": 1}}, "df": 1}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "5": {"1": {"docs": {"mathgenerator.misc.profit_loss_percent": {"tf": 1}}, "df": 1}, "3": {"4": {"8": {"0": {"9": {"6": {"docs": {"mathgenerator.basic_math.greatest_common_divisor": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "8": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}, "mathgenerator.geometry.complementary_and_supplementary_angle": {"tf": 1}}, "df": 2}, "6": {"0": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "1": {"docs": {"mathgenerator.misc.euclidian_norm": {"tf": 1}}, "df": 1}, "4": {"8": {"docs": {"mathgenerator.algebra.int_matrix_22_determinant": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "7": {"1": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.geometry.fourth_angle_of_quadrilateral": {"tf": 1}}, "df": 1}, "8": {"docs": {"mathgenerator.geometry.fourth_angle_of_quadrilateral": {"tf": 1}, "mathgenerator.geometry.perimeter_of_polygons": {"tf": 1}}, "df": 2}, "9": {"6": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "9": {"5": {"0": {"0": {"5": {"3": {"8": {"7": {"4": {"4": {"2": {"4": {"docs": {"mathgenerator.misc.euclidian_norm": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}, "mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1}, "mathgenerator.geometry.volume_pyramid": {"tf": 1}, "mathgenerator.statistics.data_summary": {"tf": 1}}, "df": 4, "}": {"docs": {}, "df": 0, "{": {"5": {"docs": {"mathgenerator.algebra.intersection_of_two_lines": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"mathgenerator.misc.geometric_progression": {"tf": 1.4142135623730951}}, "df": 1}}}, "8": {"0": {"4": {"docs": {"mathgenerator.geometry.surface_area_sphere": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_term": {"tf": 1}}, "df": 2}, "9": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "1": {"5": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.basic_math.percentage_error": {"tf": 1}, "mathgenerator.geometry.angle_btw_vectors": {"tf": 1}, "mathgenerator.statistics.mean_median": {"tf": 1}}, "df": 3}, "2": {"4": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1.4142135623730951}}, "df": 1}, "8": {"docs": {"mathgenerator.algebra.complex_quadratic": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "3": {"6": {"docs": {"mathgenerator.misc.minutes_to_hours": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}, "mathgenerator.geometry.sector_area": {"tf": 1}}, "df": 2, "\\": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"8": {"0": {"docs": {"mathgenerator.basic_math.fraction_to_decimal": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}}, "4": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1.4142135623730951}, "mathgenerator.misc.quotient_of_power_same_power": {"tf": 1}}, "df": 2}, "5": {"8": {"6": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "h": {"docs": {"mathgenerator.computer_science.nth_fibonacci_number": {"tf": 1}}, "df": 1}}}, "6": {"1": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.geometry.circumference": {"tf": 1}, "mathgenerator.misc.geometric_mean": {"tf": 1}, "mathgenerator.misc.product_of_scientific_notations": {"tf": 1}}, "df": 3}, "7": {"docs": {"mathgenerator.misc.geometric_mean": {"tf": 1}, "mathgenerator.statistics.mean_median": {"tf": 1}}, "df": 2}, "8": {"8": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.algebra.int_matrix_22_determinant": {"tf": 1}, "mathgenerator.geometry.angle_btw_vectors": {"tf": 1}, "mathgenerator.misc.factors": {"tf": 1}}, "df": 3}, "9": {"3": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.algebra.complex_quadratic": {"tf": 1.7320508075688772}, "mathgenerator.algebra.intersection_of_two_lines": {"tf": 1}, "mathgenerator.algebra.line_equation_from_2_points": {"tf": 1}, "mathgenerator.algebra.midpoint_of_two_points": {"tf": 1}, "mathgenerator.algebra.system_of_equations": {"tf": 1}, "mathgenerator.algebra.vector_dot": {"tf": 1}, "mathgenerator.basic_math.exponentiation": {"tf": 1}, "mathgenerator.basic_math.greatest_common_divisor": {"tf": 1}, "mathgenerator.basic_math.square_root": {"tf": 1}, "mathgenerator.calculus.stationary_points": {"tf": 1}, "mathgenerator.computer_science.fibonacci_series": {"tf": 1}, "mathgenerator.geometry.angle_btw_vectors": {"tf": 1}, "mathgenerator.geometry.angle_regular_polygon": {"tf": 1}, "mathgenerator.geometry.area_of_triangle": {"tf": 1.4142135623730951}, "mathgenerator.geometry.sum_of_polygon_angles": {"tf": 1}, "mathgenerator.misc.celsius_to_fahrenheit": {"tf": 1}, "mathgenerator.misc.factors": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_base": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_power": {"tf": 1}, "mathgenerator.misc.set_operation": {"tf": 2}, "mathgenerator.statistics.data_summary": {"tf": 1}}, "df": 21, "x": {"docs": {"mathgenerator.algebra.complex_quadratic": {"tf": 1}}, "df": 1}, "]": {"docs": {}, "df": 0, "\\": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.algebra.vector_dot": {"tf": 1}}, "df": 1}}}}}}, "m": {"docs": {"mathgenerator.geometry.surface_area_cuboid": {"tf": 1}, "mathgenerator.geometry.surface_area_sphere": {"tf": 1}, "mathgenerator.geometry.volume_cone_frustum": {"tf": 1}}, "df": 3}}, "9": {"0": {"docs": {"mathgenerator.basic_math.multiplication": {"tf": 1}}, "df": 1}, "1": {"docs": {"mathgenerator.algebra.int_matrix_22_determinant": {"tf": 1}, "mathgenerator.calculus.definite_integral": {"tf": 1}, "mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 3}, "2": {"2": {"5": {"0": {"7": {"1": {"5": {"4": {"0": {"4": {"4": {"2": {"docs": {"mathgenerator.misc.euclidian_norm": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "9": {"7": {"2": {"docs": {"mathgenerator.misc.arithmetic_progression_sum": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1}, "mathgenerator.misc.decimal_to_roman_numerals": {"tf": 1}, "mathgenerator.statistics.mean_median": {"tf": 1}}, "df": 3}, "3": {"4": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "6": {"docs": {"mathgenerator.geometry.surface_area_cuboid": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}, "mathgenerator.misc.complex_to_polar": {"tf": 1}}, "df": 2}, "4": {"2": {"docs": {"mathgenerator.geometry.volume_cylinder": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "5": {"4": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "6": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "7": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1.4142135623730951}, "mathgenerator.geometry.degree_to_rad": {"tf": 1}, "mathgenerator.misc.euclidian_norm": {"tf": 1}}, "df": 3}, "8": {"docs": {"mathgenerator.statistics.conditional_probability": {"tf": 1}}, "df": 1}, "9": {"7": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.geometry.area_of_triangle": {"tf": 1}, "mathgenerator.statistics.conditional_probability": {"tf": 1.7320508075688772}, "mathgenerator.statistics.confidence_interval": {"tf": 1}}, "df": 3}, "docs": {"mathgenerator.algebra.compound_interest": {"tf": 1}, "mathgenerator.algebra.int_matrix_22_determinant": {"tf": 1}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1}, "mathgenerator.algebra.vector_dot": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.division": {"tf": 1}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}, "mathgenerator.geometry.pythagorean_theorem": {"tf": 1}, "mathgenerator.statistics.data_summary": {"tf": 1}}, "df": 8, "x": {"docs": {"mathgenerator.algebra.system_of_equations": {"tf": 1}}, "df": 1, "^": {"docs": {}, "df": 0, "{": {"6": {"docs": {"mathgenerator.calculus.power_rule_integration": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}, "^": {"docs": {}, "df": 0, "{": {"5": {"docs": {"mathgenerator.basic_math.exponentiation": {"tf": 1}}, "df": 1}, "8": {"docs": {"mathgenerator.misc.quotient_of_power_same_power": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}, "docs": {"mathgenerator": {"tf": 14.106735979665885}, "mathgenerator.get_gen_list": {"tf": 1.7320508075688772}, "mathgenerator.gen_by_id": {"tf": 1.7320508075688772}, "mathgenerator.getGenList": {"tf": 1.7320508075688772}, "mathgenerator.genById": {"tf": 1.7320508075688772}, "mathgenerator.algebra": {"tf": 1.7320508075688772}, "mathgenerator.algebra.basic_algebra": {"tf": 5.5677643628300215}, "mathgenerator.algebra.combine_like_terms": {"tf": 6}, "mathgenerator.algebra.complex_quadratic": {"tf": 5.916079783099616}, "mathgenerator.algebra.compound_interest": {"tf": 5.656854249492381}, "mathgenerator.algebra.distance_two_points": {"tf": 5.830951894845301}, "mathgenerator.algebra.expanding": {"tf": 5.656854249492381}, "mathgenerator.algebra.factoring": {"tf": 5.916079783099616}, "mathgenerator.algebra.int_matrix_22_determinant": {"tf": 5.656854249492381}, "mathgenerator.algebra.intersection_of_two_lines": {"tf": 5.744562646538029}, "mathgenerator.algebra.invert_matrix": {"tf": 5.830951894845301}, "mathgenerator.algebra.linear_equations": {"tf": 5.744562646538029}, "mathgenerator.algebra.line_equation_from_2_points": {"tf": 5.916079783099616}, "mathgenerator.algebra.log": {"tf": 5.5677643628300215}, "mathgenerator.algebra.matrix_multiplication": {"tf": 6.855654600401044}, "mathgenerator.algebra.midpoint_of_two_points": {"tf": 6}, "mathgenerator.algebra.multiply_complex_numbers": {"tf": 5.916079783099616}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 5.830951894845301}, "mathgenerator.algebra.quadratic_equation": {"tf": 5.5677643628300215}, "mathgenerator.algebra.simple_interest": {"tf": 5.656854249492381}, "mathgenerator.algebra.system_of_equations": {"tf": 5.830951894845301}, "mathgenerator.algebra.vector_cross": {"tf": 5.744562646538029}, "mathgenerator.algebra.vector_dot": {"tf": 5.656854249492381}, "mathgenerator.basic_math": {"tf": 1.7320508075688772}, "mathgenerator.basic_math.absolute_difference": {"tf": 6.082762530298219}, "mathgenerator.basic_math.addition": {"tf": 5.5677643628300215}, "mathgenerator.basic_math.compare_fractions": {"tf": 5.656854249492381}, "mathgenerator.basic_math.cube_root": {"tf": 5.5677643628300215}, "mathgenerator.basic_math.divide_fractions": {"tf": 5.5677643628300215}, "mathgenerator.basic_math.division": {"tf": 5.5677643628300215}, "mathgenerator.basic_math.exponentiation": {"tf": 5.5677643628300215}, "mathgenerator.basic_math.factorial": {"tf": 5.5677643628300215}, "mathgenerator.basic_math.fraction_multiplication": {"tf": 5.5677643628300215}, "mathgenerator.basic_math.fraction_to_decimal": {"tf": 5.5677643628300215}, "mathgenerator.basic_math.greatest_common_divisor": {"tf": 5.744562646538029}, "mathgenerator.basic_math.is_composite": {"tf": 5.477225575051661}, "mathgenerator.basic_math.is_prime": {"tf": 5.477225575051661}, "mathgenerator.basic_math.multiplication": {"tf": 5.5677643628300215}, "mathgenerator.basic_math.percentage": {"tf": 5.477225575051661}, "mathgenerator.basic_math.percentage_difference": {"tf": 5.477225575051661}, "mathgenerator.basic_math.percentage_error": {"tf": 5.5677643628300215}, "mathgenerator.basic_math.power_of_powers": {"tf": 5.477225575051661}, "mathgenerator.basic_math.square": {"tf": 5.5677643628300215}, "mathgenerator.basic_math.square_root": {"tf": 5.5677643628300215}, "mathgenerator.basic_math.simplify_square_root": {"tf": 5.477225575051661}, "mathgenerator.basic_math.subtraction": {"tf": 5.5677643628300215}, "mathgenerator.calculus": {"tf": 1.7320508075688772}, "mathgenerator.calculus.definite_integral": {"tf": 5.744562646538029}, "mathgenerator.calculus.power_rule_differentiation": {"tf": 5.830951894845301}, "mathgenerator.calculus.power_rule_integration": {"tf": 5.916079783099616}, "mathgenerator.calculus.stationary_points": {"tf": 5.916079783099616}, "mathgenerator.calculus.trig_differentiation": {"tf": 5.656854249492381}, "mathgenerator.computer_science": {"tf": 1.7320508075688772}, "mathgenerator.computer_science.bcd_to_decimal": {"tf": 5.5677643628300215}, "mathgenerator.computer_science.binary_2s_complement": {"tf": 5.5677643628300215}, "mathgenerator.computer_science.binary_complement_1s": {"tf": 5.5677643628300215}, "mathgenerator.computer_science.binary_to_decimal": {"tf": 5.477225575051661}, "mathgenerator.computer_science.binary_to_hex": {"tf": 5.477225575051661}, "mathgenerator.computer_science.decimal_to_bcd": {"tf": 5.5677643628300215}, "mathgenerator.computer_science.decimal_to_binary": {"tf": 5.5677643628300215}, "mathgenerator.computer_science.decimal_to_hexadeci": {"tf": 5.5677643628300215}, "mathgenerator.computer_science.decimal_to_octal": {"tf": 5.477225575051661}, "mathgenerator.computer_science.fibonacci_series": {"tf": 5.5677643628300215}, "mathgenerator.computer_science.modulo_division": {"tf": 5.656854249492381}, "mathgenerator.computer_science.nth_fibonacci_number": {"tf": 5.477225575051661}, "mathgenerator.geometry": {"tf": 1.7320508075688772}, "mathgenerator.geometry.angle_btw_vectors": {"tf": 5.477225575051661}, "mathgenerator.geometry.angle_regular_polygon": {"tf": 5.477225575051661}, "mathgenerator.geometry.arc_length": {"tf": 5.656854249492381}, "mathgenerator.geometry.area_of_circle": {"tf": 5.5677643628300215}, "mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 5.830951894845301}, "mathgenerator.geometry.area_of_triangle": {"tf": 5.5677643628300215}, "mathgenerator.geometry.basic_trigonometry": {"tf": 5.5677643628300215}, "mathgenerator.geometry.circumference": {"tf": 5.5677643628300215}, "mathgenerator.geometry.complementary_and_supplementary_angle": {"tf": 5.5677643628300215}, "mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 5.477225575051661}, "mathgenerator.geometry.degree_to_rad": {"tf": 5.477225575051661}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 5.830951894845301}, "mathgenerator.geometry.fourth_angle_of_quadrilateral": {"tf": 5.5677643628300215}, "mathgenerator.geometry.perimeter_of_polygons": {"tf": 5.477225575051661}, "mathgenerator.geometry.pythagorean_theorem": {"tf": 5.477225575051661}, "mathgenerator.geometry.radian_to_deg": {"tf": 1.4142135623730951}, "mathgenerator.geometry.sector_area": {"tf": 5.477225575051661}, "mathgenerator.geometry.sum_of_polygon_angles": {"tf": 5.477225575051661}, "mathgenerator.geometry.surface_area_cone": {"tf": 5.656854249492381}, "mathgenerator.geometry.surface_area_cube": {"tf": 5.5677643628300215}, "mathgenerator.geometry.surface_area_cuboid": {"tf": 5.477225575051661}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 5.656854249492381}, "mathgenerator.geometry.surface_area_pyramid": {"tf": 5.744562646538029}, "mathgenerator.geometry.surface_area_sphere": {"tf": 5.5677643628300215}, "mathgenerator.geometry.third_angle_of_triangle": {"tf": 5.5677643628300215}, "mathgenerator.geometry.valid_triangle": {"tf": 5.477225575051661}, "mathgenerator.geometry.volume_cone": {"tf": 5.656854249492381}, "mathgenerator.geometry.volume_cube": {"tf": 3.3166247903554}, "mathgenerator.geometry.volume_cuboid": {"tf": 5.477225575051661}, "mathgenerator.geometry.volume_cylinder": {"tf": 5.656854249492381}, "mathgenerator.geometry.volume_cone_frustum": {"tf": 5.5677643628300215}, "mathgenerator.geometry.volume_hemisphere": {"tf": 5.5677643628300215}, "mathgenerator.geometry.volume_pyramid": {"tf": 5.744562646538029}, "mathgenerator.geometry.volume_sphere": {"tf": 5.5677643628300215}, "mathgenerator.misc": {"tf": 1.7320508075688772}, "mathgenerator.misc.arithmetic_progression_sum": {"tf": 5.5677643628300215}, "mathgenerator.misc.arithmetic_progression_term": {"tf": 5.656854249492381}, "mathgenerator.misc.base_conversion": {"tf": 5.477225575051661}, "mathgenerator.misc.binomial_distribution": {"tf": 5.477225575051661}, "mathgenerator.misc.celsius_to_fahrenheit": {"tf": 5.656854249492381}, "mathgenerator.misc.common_factors": {"tf": 5.5677643628300215}, "mathgenerator.misc.complex_to_polar": {"tf": 5.744562646538029}, "mathgenerator.misc.decimal_to_roman_numerals": {"tf": 5.477225575051661}, "mathgenerator.misc.euclidian_norm": {"tf": 5.477225575051661}, "mathgenerator.misc.factors": {"tf": 5.5677643628300215}, "mathgenerator.misc.geometric_mean": {"tf": 5.5677643628300215}, "mathgenerator.misc.geometric_progression": {"tf": 5.477225575051661}, "mathgenerator.misc.harmonic_mean": {"tf": 5.5677643628300215}, "mathgenerator.misc.is_leap_year": {"tf": 5.477225575051661}, "mathgenerator.misc.lcm": {"tf": 5.656854249492381}, "mathgenerator.misc.minutes_to_hours": {"tf": 5.477225575051661}, "mathgenerator.misc.prime_factors": {"tf": 5.477225575051661}, "mathgenerator.misc.product_of_scientific_notations": {"tf": 5.5677643628300215}, "mathgenerator.misc.profit_loss_percent": {"tf": 5.477225575051661}, "mathgenerator.misc.quotient_of_power_same_base": {"tf": 5.477225575051661}, "mathgenerator.misc.quotient_of_power_same_power": {"tf": 5.477225575051661}, "mathgenerator.misc.set_operation": {"tf": 5.5677643628300215}, "mathgenerator.misc.signum_function": {"tf": 5.744562646538029}, "mathgenerator.misc.surds_comparison": {"tf": 5.656854249492381}, "mathgenerator.statistics": {"tf": 1.7320508075688772}, "mathgenerator.statistics.combinations": {"tf": 5.5677643628300215}, "mathgenerator.statistics.conditional_probability": {"tf": 5.477225575051661}, "mathgenerator.statistics.confidence_interval": {"tf": 5.656854249492381}, "mathgenerator.statistics.data_summary": {"tf": 5.477225575051661}, "mathgenerator.statistics.dice_sum_probability": {"tf": 5.656854249492381}, "mathgenerator.statistics.mean_median": {"tf": 5.477225575051661}, "mathgenerator.statistics.permutation": {"tf": 5.477225575051661}}, "df": 138, "m": {"docs": {"mathgenerator.geometry.volume_pyramid": {"tf": 1.7320508075688772}, "mathgenerator.geometry.volume_sphere": {"tf": 1}}, "df": 2, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"mathgenerator": {"tf": 1.4142135623730951}}, "df": 1, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator": {"tf": 1.4142135623730951}}, "df": 1, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator": {"tf": 3}}, "df": 1}}}}}}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {"mathgenerator.algebra.int_matrix_22_determinant": {"tf": 1}, "mathgenerator.algebra.invert_matrix": {"tf": 1.4142135623730951}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1}}, "df": 3}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1}}, "df": 1}}}}}}, "y": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.misc.binomial_distribution": {"tf": 1}}, "df": 1, "r": {"docs": {"mathgenerator.misc.binomial_distribution": {"tf": 1}}, "df": 1}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.misc.geometric_mean": {"tf": 1.4142135623730951}, "mathgenerator.misc.harmonic_mean": {"tf": 1.4142135623730951}, "mathgenerator.statistics.data_summary": {"tf": 1.7320508075688772}, "mathgenerator.statistics.mean_median": {"tf": 1.7320508075688772}}, "df": 4, "s": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator.misc.binomial_distribution": {"tf": 1}}, "df": 1}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.statistics.mean_median": {"tf": 1.7320508075688772}}, "df": 1}}}}}, "d": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}, "g": {"docs": {"mathgenerator": {"tf": 1.4142135623730951}}, "df": 1}, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.algebra.matrix_multiplication": {"tf": 1.4142135623730951}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1}}, "df": 2}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.algebra.multiply_complex_numbers": {"tf": 1}, "mathgenerator.basic_math.fraction_multiplication": {"tf": 1}, "mathgenerator.basic_math.multiplication": {"tf": 1}}, "df": 3}}}}}}}, "e": {"docs": {"mathgenerator.misc.lcm": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.algebra.midpoint_of_two_points": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.misc.minutes_to_hours": {"tf": 2.23606797749979}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {"mathgenerator.computer_science.modulo_division": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.misc.binomial_distribution": {"tf": 1}}, "df": 1}}}, "^": {"2": {"docs": {"mathgenerator.geometry.surface_area_cone": {"tf": 1}, "mathgenerator.geometry.surface_area_cube": {"tf": 1}, "mathgenerator.geometry.surface_area_cuboid": {"tf": 1}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.surface_area_pyramid": {"tf": 1}, "mathgenerator.geometry.surface_area_sphere": {"tf": 1}}, "df": 6}, "3": {"docs": {"mathgenerator.geometry.volume_cone": {"tf": 1}, "mathgenerator.geometry.volume_cube": {"tf": 1}, "mathgenerator.geometry.volume_cuboid": {"tf": 1}, "mathgenerator.geometry.volume_cylinder": {"tf": 1}, "mathgenerator.geometry.volume_cone_frustum": {"tf": 1}, "mathgenerator.geometry.volume_hemisphere": {"tf": 1}, "mathgenerator.geometry.volume_pyramid": {"tf": 1}, "mathgenerator.geometry.volume_sphere": {"tf": 1}}, "df": 8}, "docs": {}, "df": 0}}, "a": {"docs": {"mathgenerator": {"tf": 3}, "mathgenerator.algebra.compound_interest": {"tf": 1.4142135623730951}, "mathgenerator.algebra.factoring": {"tf": 1}, "mathgenerator.algebra.simple_interest": {"tf": 1.4142135623730951}, "mathgenerator.algebra.system_of_equations": {"tf": 1}, "mathgenerator.basic_math.percentage": {"tf": 1}, "mathgenerator.geometry.angle_regular_polygon": {"tf": 1.4142135623730951}, "mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1}, "mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1.4142135623730951}, "mathgenerator.geometry.perimeter_of_polygons": {"tf": 1}, "mathgenerator.geometry.pythagorean_theorem": {"tf": 1}, "mathgenerator.geometry.sector_area": {"tf": 1.4142135623730951}, "mathgenerator.geometry.sum_of_polygon_angles": {"tf": 1}, "mathgenerator.geometry.surface_area_cone": {"tf": 1}, "mathgenerator.geometry.surface_area_cube": {"tf": 1}, "mathgenerator.geometry.surface_area_cuboid": {"tf": 1}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.surface_area_pyramid": {"tf": 1}, "mathgenerator.geometry.surface_area_sphere": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_cone": {"tf": 1}, "mathgenerator.geometry.volume_cube": {"tf": 1.7320508075688772}, "mathgenerator.geometry.volume_cuboid": {"tf": 1}, "mathgenerator.geometry.volume_cylinder": {"tf": 1}, "mathgenerator.geometry.volume_cone_frustum": {"tf": 1}, "mathgenerator.geometry.volume_hemisphere": {"tf": 1}, "mathgenerator.geometry.volume_pyramid": {"tf": 1}, "mathgenerator.geometry.volume_sphere": {"tf": 1}, "mathgenerator.misc.binomial_distribution": {"tf": 1.4142135623730951}, "mathgenerator.misc.euclidian_norm": {"tf": 1}, "mathgenerator.misc.factors": {"tf": 1}, "mathgenerator.misc.geometric_progression": {"tf": 1.4142135623730951}, "mathgenerator.misc.is_leap_year": {"tf": 1.4142135623730951}, "mathgenerator.misc.set_operation": {"tf": 2.23606797749979}, "mathgenerator.statistics.combinations": {"tf": 1}, "mathgenerator.statistics.conditional_probability": {"tf": 1}, "mathgenerator.statistics.dice_sum_probability": {"tf": 1.4142135623730951}, "mathgenerator.statistics.permutation": {"tf": 1}}, "df": 37, "n": {"docs": {"mathgenerator": {"tf": 2.449489742783178}}, "df": 1, "d": {"docs": {"mathgenerator": {"tf": 2.23606797749979}, "mathgenerator.algebra.compound_interest": {"tf": 1}, "mathgenerator.algebra.distance_two_points": {"tf": 1}, "mathgenerator.algebra.intersection_of_two_lines": {"tf": 1}, "mathgenerator.algebra.linear_equations": {"tf": 1.4142135623730951}, "mathgenerator.algebra.line_equation_from_2_points": {"tf": 1}, "mathgenerator.algebra.matrix_multiplication": {"tf": 1}, "mathgenerator.algebra.midpoint_of_two_points": {"tf": 1}, "mathgenerator.algebra.simple_interest": {"tf": 1}, "mathgenerator.algebra.system_of_equations": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.compare_fractions": {"tf": 1}, "mathgenerator.basic_math.percentage_difference": {"tf": 1}, "mathgenerator.basic_math.percentage_error": {"tf": 1}, "mathgenerator.geometry.angle_btw_vectors": {"tf": 1}, "mathgenerator.geometry.arc_length": {"tf": 1}, "mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1.4142135623730951}, "mathgenerator.geometry.complementary_and_supplementary_angle": {"tf": 1}, "mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}, "mathgenerator.geometry.pythagorean_theorem": {"tf": 1}, "mathgenerator.geometry.sector_area": {"tf": 1}, "mathgenerator.geometry.surface_area_cone": {"tf": 1}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.surface_area_pyramid": {"tf": 1}, "mathgenerator.geometry.third_angle_of_triangle": {"tf": 1}, "mathgenerator.geometry.valid_triangle": {"tf": 1}, "mathgenerator.geometry.volume_cone": {"tf": 1}, "mathgenerator.geometry.volume_cylinder": {"tf": 1}, "mathgenerator.geometry.volume_cone_frustum": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_pyramid": {"tf": 1}, "mathgenerator.misc.common_factors": {"tf": 1}, "mathgenerator.misc.lcm": {"tf": 1}, "mathgenerator.misc.minutes_to_hours": {"tf": 1.4142135623730951}, "mathgenerator.misc.product_of_scientific_notations": {"tf": 1}, "mathgenerator.misc.profit_loss_percent": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_base": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_power": {"tf": 1}, "mathgenerator.misc.set_operation": {"tf": 1}, "mathgenerator.statistics.data_summary": {"tf": 1.4142135623730951}, "mathgenerator.statistics.mean_median": {"tf": 1.7320508075688772}}, "df": 40}, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1.4142135623730951}, "mathgenerator.geometry.angle_regular_polygon": {"tf": 1.4142135623730951}, "mathgenerator.geometry.arc_length": {"tf": 2}, "mathgenerator.geometry.complementary_and_supplementary_angle": {"tf": 1.4142135623730951}, "mathgenerator.geometry.degree_to_rad": {"tf": 1}, "mathgenerator.geometry.fourth_angle_of_quadrilateral": {"tf": 1.4142135623730951}, "mathgenerator.geometry.sector_area": {"tf": 1}, "mathgenerator.geometry.third_angle_of_triangle": {"tf": 1.4142135623730951}}, "df": 8, "s": {"docs": {"mathgenerator.geometry.fourth_angle_of_quadrilateral": {"tf": 1}, "mathgenerator.geometry.sum_of_polygon_angles": {"tf": 1.4142135623730951}, "mathgenerator.geometry.third_angle_of_triangle": {"tf": 1}}, "df": 3}}}}}, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}, "p": {"docs": {"mathgenerator.misc.arithmetic_progression_sum": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_term": {"tf": 1}}, "df": 2, "p": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"mathgenerator.statistics.dice_sum_probability": {"tf": 1}}, "df": 1}}}}}}}}, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.basic_math.absolute_difference": {"tf": 1}}, "df": 1}}}}}}}, "d": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator": {"tf": 2.23606797749979}, "mathgenerator.basic_math.addition": {"tf": 1}}, "df": 2}}}}}}}, "s": {"docs": {"mathgenerator": {"tf": 1.7320508075688772}}, "df": 1, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator": {"tf": 1.4142135623730951}, "mathgenerator.algebra.quadratic_equation": {"tf": 1}, "mathgenerator.misc.binomial_distribution": {"tf": 1.4142135623730951}, "mathgenerator.statistics.dice_sum_probability": {"tf": 1}}, "df": 4, "a": {"docs": {"mathgenerator.geometry.area_of_circle": {"tf": 1.4142135623730951}, "mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1.4142135623730951}, "mathgenerator.geometry.area_of_triangle": {"tf": 1.4142135623730951}, "mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1.4142135623730951}, "mathgenerator.geometry.sector_area": {"tf": 1.4142135623730951}, "mathgenerator.geometry.surface_area_cone": {"tf": 1.4142135623730951}, "mathgenerator.geometry.surface_area_cube": {"tf": 1.4142135623730951}, "mathgenerator.geometry.surface_area_cuboid": {"tf": 1.4142135623730951}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 1.4142135623730951}, "mathgenerator.geometry.surface_area_pyramid": {"tf": 1.4142135623730951}, "mathgenerator.geometry.surface_area_sphere": {"tf": 1.4142135623730951}}, "df": 11}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}, "c": {"docs": {"mathgenerator.geometry.arc_length": {"tf": 1.7320508075688772}}, "df": 1}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"mathgenerator.misc.arithmetic_progression_sum": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_term": {"tf": 1}, "mathgenerator.statistics.mean_median": {"tf": 1.4142135623730951}}, "df": 3}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"mathgenerator.statistics.mean_median": {"tf": 1}}, "df": 1}}}}}}}}}, "t": {"docs": {"mathgenerator": {"tf": 1.4142135623730951}, "mathgenerator.statistics.combinations": {"tf": 1}, "mathgenerator.statistics.dice_sum_probability": {"tf": 1}, "mathgenerator.statistics.permutation": {"tf": 1}}, "df": 4}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.misc.binomial_distribution": {"tf": 1}}, "df": 1}}}}}}, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}, "l": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {"mathgenerator.algebra.basic_algebra": {"tf": 1}}, "df": 1}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.algebra.compound_interest": {"tf": 1}, "mathgenerator.algebra.simple_interest": {"tf": 1}}, "df": 2}}}}, "p": {"docs": {"mathgenerator.algebra.int_matrix_22_determinant": {"tf": 1.4142135623730951}, "mathgenerator.algebra.invert_matrix": {"tf": 3.4641016151377544}, "mathgenerator.algebra.matrix_multiplication": {"tf": 6.48074069840786}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 2}, "mathgenerator.misc.minutes_to_hours": {"tf": 1}}, "df": 5}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {"mathgenerator": {"tf": 3.605551275463989}, "mathgenerator.algebra.basic_algebra": {"tf": 1}, "mathgenerator.algebra.combine_like_terms": {"tf": 1}, "mathgenerator.algebra.complex_quadratic": {"tf": 1}, "mathgenerator.algebra.compound_interest": {"tf": 1}, "mathgenerator.algebra.distance_two_points": {"tf": 1}, "mathgenerator.algebra.expanding": {"tf": 1}, "mathgenerator.algebra.factoring": {"tf": 1}, "mathgenerator.algebra.int_matrix_22_determinant": {"tf": 1}, "mathgenerator.algebra.intersection_of_two_lines": {"tf": 1}, "mathgenerator.algebra.invert_matrix": {"tf": 1}, "mathgenerator.algebra.linear_equations": {"tf": 1}, "mathgenerator.algebra.line_equation_from_2_points": {"tf": 1}, "mathgenerator.algebra.log": {"tf": 1}, "mathgenerator.algebra.matrix_multiplication": {"tf": 1}, "mathgenerator.algebra.midpoint_of_two_points": {"tf": 1}, "mathgenerator.algebra.multiply_complex_numbers": {"tf": 1}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1}, "mathgenerator.algebra.quadratic_equation": {"tf": 1}, "mathgenerator.algebra.simple_interest": {"tf": 1}, "mathgenerator.algebra.system_of_equations": {"tf": 1}, "mathgenerator.algebra.vector_cross": {"tf": 1}, "mathgenerator.algebra.vector_dot": {"tf": 1}, "mathgenerator.basic_math.absolute_difference": {"tf": 1}, "mathgenerator.basic_math.addition": {"tf": 1}, "mathgenerator.basic_math.compare_fractions": {"tf": 1}, "mathgenerator.basic_math.cube_root": {"tf": 1}, "mathgenerator.basic_math.divide_fractions": {"tf": 1}, "mathgenerator.basic_math.division": {"tf": 1}, "mathgenerator.basic_math.exponentiation": {"tf": 1}, "mathgenerator.basic_math.factorial": {"tf": 1}, "mathgenerator.basic_math.fraction_multiplication": {"tf": 1}, "mathgenerator.basic_math.fraction_to_decimal": {"tf": 1}, "mathgenerator.basic_math.greatest_common_divisor": {"tf": 1}, "mathgenerator.basic_math.is_composite": {"tf": 1}, "mathgenerator.basic_math.is_prime": {"tf": 1}, "mathgenerator.basic_math.multiplication": {"tf": 1}, "mathgenerator.basic_math.percentage": {"tf": 1}, "mathgenerator.basic_math.percentage_difference": {"tf": 1}, "mathgenerator.basic_math.percentage_error": {"tf": 1}, "mathgenerator.basic_math.power_of_powers": {"tf": 1}, "mathgenerator.basic_math.square": {"tf": 1}, "mathgenerator.basic_math.square_root": {"tf": 1}, "mathgenerator.basic_math.simplify_square_root": {"tf": 1}, "mathgenerator.basic_math.subtraction": {"tf": 1}, "mathgenerator.calculus.definite_integral": {"tf": 1}, "mathgenerator.calculus.power_rule_differentiation": {"tf": 1}, "mathgenerator.calculus.power_rule_integration": {"tf": 1}, "mathgenerator.calculus.stationary_points": {"tf": 1}, "mathgenerator.calculus.trig_differentiation": {"tf": 1}, "mathgenerator.computer_science.bcd_to_decimal": {"tf": 1}, "mathgenerator.computer_science.binary_2s_complement": {"tf": 1}, "mathgenerator.computer_science.binary_complement_1s": {"tf": 1}, "mathgenerator.computer_science.binary_to_decimal": {"tf": 1}, "mathgenerator.computer_science.binary_to_hex": {"tf": 1}, "mathgenerator.computer_science.decimal_to_bcd": {"tf": 1}, "mathgenerator.computer_science.decimal_to_binary": {"tf": 1}, "mathgenerator.computer_science.decimal_to_hexadeci": {"tf": 1}, "mathgenerator.computer_science.decimal_to_octal": {"tf": 1}, "mathgenerator.computer_science.fibonacci_series": {"tf": 1}, "mathgenerator.computer_science.modulo_division": {"tf": 1}, "mathgenerator.computer_science.nth_fibonacci_number": {"tf": 1}, "mathgenerator.geometry.angle_btw_vectors": {"tf": 1}, "mathgenerator.geometry.angle_regular_polygon": {"tf": 1}, "mathgenerator.geometry.arc_length": {"tf": 1}, "mathgenerator.geometry.area_of_circle": {"tf": 1}, "mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1}, "mathgenerator.geometry.area_of_triangle": {"tf": 1}, "mathgenerator.geometry.basic_trigonometry": {"tf": 1}, "mathgenerator.geometry.circumference": {"tf": 1}, "mathgenerator.geometry.complementary_and_supplementary_angle": {"tf": 1}, "mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.degree_to_rad": {"tf": 1}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}, "mathgenerator.geometry.fourth_angle_of_quadrilateral": {"tf": 1}, "mathgenerator.geometry.perimeter_of_polygons": {"tf": 1}, "mathgenerator.geometry.pythagorean_theorem": {"tf": 1}, "mathgenerator.geometry.sector_area": {"tf": 1}, "mathgenerator.geometry.sum_of_polygon_angles": {"tf": 1}, "mathgenerator.geometry.surface_area_cone": {"tf": 1}, "mathgenerator.geometry.surface_area_cube": {"tf": 1}, "mathgenerator.geometry.surface_area_cuboid": {"tf": 1}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.surface_area_pyramid": {"tf": 1}, "mathgenerator.geometry.surface_area_sphere": {"tf": 1}, "mathgenerator.geometry.third_angle_of_triangle": {"tf": 1}, "mathgenerator.geometry.valid_triangle": {"tf": 1}, "mathgenerator.geometry.volume_cone": {"tf": 1}, "mathgenerator.geometry.volume_cube": {"tf": 1}, "mathgenerator.geometry.volume_cuboid": {"tf": 1}, "mathgenerator.geometry.volume_cylinder": {"tf": 1}, "mathgenerator.geometry.volume_cone_frustum": {"tf": 1}, "mathgenerator.geometry.volume_hemisphere": {"tf": 1}, "mathgenerator.geometry.volume_pyramid": {"tf": 1}, "mathgenerator.geometry.volume_sphere": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_sum": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_term": {"tf": 1}, "mathgenerator.misc.base_conversion": {"tf": 1}, "mathgenerator.misc.binomial_distribution": {"tf": 1}, "mathgenerator.misc.celsius_to_fahrenheit": {"tf": 1}, "mathgenerator.misc.common_factors": {"tf": 1}, "mathgenerator.misc.complex_to_polar": {"tf": 1}, "mathgenerator.misc.decimal_to_roman_numerals": {"tf": 1}, "mathgenerator.misc.euclidian_norm": {"tf": 1}, "mathgenerator.misc.factors": {"tf": 1}, "mathgenerator.misc.geometric_mean": {"tf": 1}, "mathgenerator.misc.geometric_progression": {"tf": 1}, "mathgenerator.misc.harmonic_mean": {"tf": 1}, "mathgenerator.misc.is_leap_year": {"tf": 1}, "mathgenerator.misc.lcm": {"tf": 1}, "mathgenerator.misc.minutes_to_hours": {"tf": 1}, "mathgenerator.misc.prime_factors": {"tf": 1}, "mathgenerator.misc.product_of_scientific_notations": {"tf": 1}, "mathgenerator.misc.profit_loss_percent": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_base": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_power": {"tf": 1}, "mathgenerator.misc.set_operation": {"tf": 1}, "mathgenerator.misc.signum_function": {"tf": 1}, "mathgenerator.misc.surds_comparison": {"tf": 1}, "mathgenerator.statistics.combinations": {"tf": 1}, "mathgenerator.statistics.conditional_probability": {"tf": 1}, "mathgenerator.statistics.confidence_interval": {"tf": 1}, "mathgenerator.statistics.data_summary": {"tf": 1}, "mathgenerator.statistics.dice_sum_probability": {"tf": 1}, "mathgenerator.statistics.mean_median": {"tf": 1}, "mathgenerator.statistics.permutation": {"tf": 1}}, "df": 126, "s": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}, "/": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.misc.binomial_distribution": {"tf": 1}, "mathgenerator.statistics.conditional_probability": {"tf": 1.4142135623730951}, "mathgenerator.statistics.dice_sum_probability": {"tf": 1.4142135623730951}}, "df": 3}}}}}}}}, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.algebra.vector_cross": {"tf": 1}, "mathgenerator.algebra.vector_dot": {"tf": 1}, "mathgenerator.misc.product_of_scientific_notations": {"tf": 1.4142135623730951}}, "df": 3}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.misc.arithmetic_progression_sum": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_term": {"tf": 1}, "mathgenerator.misc.geometric_progression": {"tf": 1}}, "df": 3}}}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.misc.profit_loss_percent": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.algebra.compound_interest": {"tf": 1}, "mathgenerator.algebra.simple_interest": {"tf": 1}}, "df": 2}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.basic_math.is_prime": {"tf": 1.4142135623730951}, "mathgenerator.misc.prime_factors": {"tf": 1.4142135623730951}}, "df": 2}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "p": {"docs": {"mathgenerator": {"tf": 1.7320508075688772}}, "df": 1}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.misc.binomial_distribution": {"tf": 2}}, "df": 1}}}}}, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.statistics.combinations": {"tf": 1}, "mathgenerator.statistics.permutation": {"tf": 1}}, "df": 2}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator": {"tf": 1.7320508075688772}}, "df": 1, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"mathgenerator.algebra.line_equation_from_2_points": {"tf": 1}, "mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1}}, "df": 2}}}}}}, "d": {"docs": {}, "df": 0, "f": {"docs": {"mathgenerator": {"tf": 1.7320508075688772}}, "df": 1}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.algebra.compound_interest": {"tf": 1}, "mathgenerator.algebra.simple_interest": {"tf": 1}}, "df": 2}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.geometry.perimeter_of_polygons": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.misc.profit_loss_percent": {"tf": 1.4142135623730951}}, "df": 1, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.basic_math.percentage": {"tf": 1}, "mathgenerator.basic_math.percentage_difference": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.percentage_error": {"tf": 1.4142135623730951}}, "df": 3}}}}}}}, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.statistics.permutation": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.algebra.intersection_of_two_lines": {"tf": 1}, "mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1}}, "df": 2, "s": {"docs": {"mathgenerator.algebra.distance_two_points": {"tf": 1}, "mathgenerator.algebra.line_equation_from_2_points": {"tf": 1.4142135623730951}, "mathgenerator.algebra.midpoint_of_two_points": {"tf": 1}, "mathgenerator.calculus.stationary_points": {"tf": 1}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1.4142135623730951}}, "df": 5}}}}, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.basic_math.power_of_powers": {"tf": 1}, "mathgenerator.calculus.power_rule_differentiation": {"tf": 1}, "mathgenerator.calculus.power_rule_integration": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_power": {"tf": 1}}, "df": 4, "s": {"docs": {"mathgenerator.basic_math.power_of_powers": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_base": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_power": {"tf": 1}}, "df": 3}}}}, "l": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.geometry.angle_regular_polygon": {"tf": 1.4142135623730951}, "mathgenerator.geometry.perimeter_of_polygons": {"tf": 1}, "mathgenerator.geometry.sum_of_polygon_angles": {"tf": 1.4142135623730951}}, "df": 3, "s": {"docs": {"mathgenerator.geometry.perimeter_of_polygons": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.misc.complex_to_polar": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.statistics.conditional_probability": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.statistics.conditional_probability": {"tf": 1}}, "df": 1}}}}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.basic_math.cube_root": {"tf": 1}}, "df": 1}}}}}, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.geometry.pythagorean_theorem": {"tf": 1}}, "df": 1}}}}}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.geometry.surface_area_pyramid": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_pyramid": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator": {"tf": 2.8284271247461903}}, "df": 1, "s": {"docs": {"mathgenerator": {"tf": 1.4142135623730951}}, "df": 1}}}, "e": {"docs": {"mathgenerator": {"tf": 1.7320508075688772}}, "df": 1, "d": {"docs": {"mathgenerator": {"tf": 1.7320508075688772}}, "df": 1}, "s": {"docs": {"mathgenerator": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "b": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator": {"tf": 2}}, "df": 1}}}}}, "t": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"mathgenerator.statistics.dice_sum_probability": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"mathgenerator.misc.geometric_mean": {"tf": 1.4142135623730951}, "mathgenerator.misc.geometric_progression": {"tf": 1}}, "df": 2}}}}}}}}, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator": {"tf": 1}, "mathgenerator.algebra.complex_quadratic": {"tf": 1}, "mathgenerator.algebra.factoring": {"tf": 1}, "mathgenerator.algebra.linear_equations": {"tf": 1}, "mathgenerator.algebra.system_of_equations": {"tf": 1}, "mathgenerator.geometry.arc_length": {"tf": 1}, "mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1}, "mathgenerator.geometry.pythagorean_theorem": {"tf": 1}, "mathgenerator.misc.geometric_progression": {"tf": 1}, "mathgenerator.misc.set_operation": {"tf": 1}, "mathgenerator.statistics.mean_median": {"tf": 1}}, "df": 11}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}, "t": {"docs": {"mathgenerator": {"tf": 1}, "mathgenerator.basic_math.compare_fractions": {"tf": 1}, "mathgenerator.misc.surds_comparison": {"tf": 1}}, "df": 3}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.basic_math.greatest_common_divisor": {"tf": 1}}, "df": 1}}}}}}}, "c": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.basic_math.greatest_common_divisor": {"tf": 1.4142135623730951}}, "df": 1}}, "p": {"docs": {"mathgenerator.misc.geometric_progression": {"tf": 1}}, "df": 1}, "u": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.statistics.conditional_probability": {"tf": 1}}, "df": 1}}}, "c": {"docs": {"mathgenerator.algebra.factoring": {"tf": 1}, "mathgenerator.calculus.power_rule_integration": {"tf": 1}}, "df": 2, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1, "d": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}, "s": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.algebra.vector_cross": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}, "e": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.misc.binomial_distribution": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {"mathgenerator.geometry.surface_area_cone": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_cone": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_cone_frustum": {"tf": 1}}, "df": 3}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.misc.base_conversion": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {"mathgenerator.misc.base_conversion": {"tf": 1}, "mathgenerator.misc.celsius_to_fahrenheit": {"tf": 1}, "mathgenerator.misc.minutes_to_hours": {"tf": 1.4142135623730951}}, "df": 3}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator.statistics.conditional_probability": {"tf": 1}}, "df": 1}}}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.statistics.confidence_interval": {"tf": 1.7320508075688772}}, "df": 1}}}}}}}}, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.algebra.combine_like_terms": {"tf": 1}}, "df": 1}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.statistics.combinations": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"mathgenerator.algebra.complex_quadratic": {"tf": 1}, "mathgenerator.algebra.multiply_complex_numbers": {"tf": 1}, "mathgenerator.misc.complex_to_polar": {"tf": 1}}, "df": 3}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.computer_science.binary_2s_complement": {"tf": 1.4142135623730951}, "mathgenerator.computer_science.binary_complement_1s": {"tf": 1}}, "df": 2, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.geometry.complementary_and_supplementary_angle": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.algebra.compound_interest": {"tf": 1.4142135623730951}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.basic_math.is_composite": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.basic_math.compare_fractions": {"tf": 1}}, "df": 1}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.basic_math.compare_fractions": {"tf": 1}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {"mathgenerator.misc.surds_comparison": {"tf": 1}}, "df": 1}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.basic_math.greatest_common_divisor": {"tf": 1}, "mathgenerator.misc.common_factors": {"tf": 1.4142135623730951}, "mathgenerator.misc.geometric_progression": {"tf": 1.4142135623730951}, "mathgenerator.misc.lcm": {"tf": 1}}, "df": 4}}}}, "t": {"docs": {"mathgenerator.calculus.trig_differentiation": {"tf": 1}}, "df": 1}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.computer_science.bcd_to_decimal": {"tf": 1.4142135623730951}, "mathgenerator.computer_science.decimal_to_bcd": {"tf": 1}}, "df": 2}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator": {"tf": 2}}, "df": 1}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1.4142135623730951}}, "df": 1}}}}, "b": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.basic_math.cube_root": {"tf": 1.4142135623730951}, "mathgenerator.geometry.surface_area_cube": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_cube": {"tf": 1.4142135623730951}}, "df": 3}, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.geometry.surface_area_cuboid": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_cuboid": {"tf": 1.4142135623730951}}, "df": 2}}}}}, "s": {"docs": {}, "df": 0, "c": {"docs": {"mathgenerator.calculus.trig_differentiation": {"tf": 1.4142135623730951}}, "df": 1}}, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.calculus.trig_differentiation": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.area_of_circle": {"tf": 1.4142135623730951}, "mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1.7320508075688772}, "mathgenerator.geometry.circumference": {"tf": 1.4142135623730951}}, "df": 3}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.circumference": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1.4142135623730951}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.misc.celsius_to_fahrenheit": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.statistics.dice_sum_probability": {"tf": 1}}, "df": 1}}}}}}, "y": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1.4142135623730951}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_cylinder": {"tf": 1.4142135623730951}}, "df": 3}}}}}}}, "p": {"docs": {"mathgenerator.misc.profit_loss_percent": {"tf": 1}}, "df": 1}}, "f": {"docs": {"mathgenerator.calculus.stationary_points": {"tf": 1}}, "df": 1, "o": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator": {"tf": 2.23606797749979}, "mathgenerator.algebra.compound_interest": {"tf": 1.4142135623730951}, "mathgenerator.algebra.linear_equations": {"tf": 1}, "mathgenerator.algebra.simple_interest": {"tf": 1.4142135623730951}, "mathgenerator.algebra.system_of_equations": {"tf": 1}, "mathgenerator.misc.geometric_progression": {"tf": 1}, "mathgenerator.statistics.conditional_probability": {"tf": 1}, "mathgenerator.statistics.confidence_interval": {"tf": 1.4142135623730951}, "mathgenerator.statistics.data_summary": {"tf": 1}}, "df": 9, "m": {"docs": {"mathgenerator.algebra.factoring": {"tf": 1}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}, "mathgenerator.misc.complex_to_polar": {"tf": 1}}, "df": 3, "a": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator": {"tf": 2.449489742783178}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"mathgenerator.geometry.fourth_angle_of_quadrilateral": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.misc.signum_function": {"tf": 1}}, "df": 1, "s": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"mathgenerator": {"tf": 1.7320508075688772}, "mathgenerator.algebra.line_equation_from_2_points": {"tf": 1}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}, "mathgenerator.misc.base_conversion": {"tf": 1}, "mathgenerator.statistics.combinations": {"tf": 1}, "mathgenerator.statistics.permutation": {"tf": 1}}, "df": 6}}, "a": {"docs": {}, "df": 0, "c": {"docs": {"mathgenerator.algebra.complex_quadratic": {"tf": 1.4142135623730951}, "mathgenerator.algebra.intersection_of_two_lines": {"tf": 1.4142135623730951}}, "df": 2, "{": {"1": {"docs": {}, "df": 0, "}": {"docs": {}, "df": 0, "{": {"2": {"docs": {"mathgenerator.basic_math.compare_fractions": {"tf": 1}, "mathgenerator.geometry.basic_trigonometry": {"tf": 1}}, "df": 2}, "3": {"docs": {"mathgenerator.calculus.stationary_points": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0}}}, "2": {"docs": {}, "df": 0, "}": {"docs": {}, "df": 0, "{": {"6": {"docs": {}, "df": 0, "}": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "^": {"docs": {}, "df": 0, "{": {"7": {"docs": {"mathgenerator.calculus.power_rule_integration": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}, "docs": {}, "df": 0}}}, "3": {"docs": {}, "df": 0, "}": {"docs": {}, "df": 0, "{": {"1": {"0": {"docs": {}, "df": 0, "}": {"docs": {}, "df": 0, "\\": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "\\": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "{": {"6": {"docs": {}, "df": 0, "}": {"docs": {}, "df": 0, "{": {"7": {"docs": {"mathgenerator.basic_math.fraction_multiplication": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}, "docs": {}, "df": 0}}}}}}}}}}}}}, "docs": {}, "df": 0}, "4": {"docs": {"mathgenerator.basic_math.compare_fractions": {"tf": 1}}, "df": 1}, "6": {"docs": {}, "df": 0, "}": {"docs": {}, "df": 0, "x": {"docs": {"mathgenerator.algebra.intersection_of_two_lines": {"tf": 1}}, "df": 1}}}, "docs": {}, "df": 0}}}, "4": {"docs": {}, "df": 0, "}": {"docs": {}, "df": 0, "{": {"3": {"docs": {}, "df": 0, "}": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "^": {"docs": {}, "df": 0, "{": {"4": {"docs": {"mathgenerator.calculus.power_rule_integration": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}, "docs": {}, "df": 0}}}, "6": {"6": {"docs": {}, "df": 0, "}": {"docs": {}, "df": 0, "{": {"5": {"docs": {"mathgenerator.algebra.intersection_of_two_lines": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}, "docs": {}, "df": 0}, "7": {"docs": {}, "df": 0, "}": {"docs": {}, "df": 0, "{": {"3": {"6": {"docs": {"mathgenerator.basic_math.divide_fractions": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "9": {"docs": {}, "df": 0, "}": {"docs": {}, "df": 0, "\\": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "\\": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "{": {"4": {"docs": {}, "df": 0, "}": {"docs": {}, "df": 0, "{": {"1": {"docs": {"mathgenerator.basic_math.divide_fractions": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}, "docs": {}, "df": 0}}}}}}}}}}}}, "docs": {}, "df": 0}}}, "8": {"docs": {}, "df": 0, "}": {"docs": {}, "df": 0, "{": {"1": {"7": {"docs": {}, "df": 0, "}": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "+": {"docs": {}, "df": 0, "\\": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "{": {"1": {"6": {"docs": {}, "df": 0, "}": {"docs": {}, "df": 0, "{": {"1": {"7": {"docs": {"mathgenerator.algebra.line_equation_from_2_points": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}}}}}}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}, "9": {"docs": {}, "df": 0, "}": {"docs": {}, "df": 0, "{": {"3": {"5": {"docs": {"mathgenerator.basic_math.fraction_multiplication": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "6": {"docs": {}, "df": 0, "}": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "^": {"docs": {}, "df": 0, "{": {"7": {"docs": {"mathgenerator.calculus.power_rule_integration": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}, "docs": {}, "df": 0}}}, "docs": {}, "df": 0, "\\": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "{": {"2": {"docs": {}, "df": 0, "}": {"docs": {}, "df": 0, "}": {"docs": {}, "df": 0, "{": {"6": {"docs": {"mathgenerator.calculus.stationary_points": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0}}}}, "docs": {}, "df": 0}}}}}}, "d": {"docs": {}, "df": 0, "}": {"docs": {}, "df": 0, "{": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "x": {"docs": {"mathgenerator.calculus.trig_differentiation": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.basic_math.fraction_multiplication": {"tf": 1}, "mathgenerator.basic_math.fraction_to_decimal": {"tf": 1}}, "df": 2, "s": {"docs": {"mathgenerator.basic_math.compare_fractions": {"tf": 1}, "mathgenerator.basic_math.divide_fractions": {"tf": 1}}, "df": 2}}}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"mathgenerator.geometry.volume_cone_frustum": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.algebra.complex_quadratic": {"tf": 1}, "mathgenerator.algebra.distance_two_points": {"tf": 1}, "mathgenerator.algebra.intersection_of_two_lines": {"tf": 1}, "mathgenerator.algebra.line_equation_from_2_points": {"tf": 1}, "mathgenerator.basic_math.percentage_error": {"tf": 1}, "mathgenerator.geometry.angle_regular_polygon": {"tf": 1}, "mathgenerator.geometry.arc_length": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_sum": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_term": {"tf": 1}, "mathgenerator.misc.geometric_progression": {"tf": 1}, "mathgenerator.misc.prime_factors": {"tf": 1}, "mathgenerator.misc.set_operation": {"tf": 1}, "mathgenerator.statistics.combinations": {"tf": 1}, "mathgenerator.statistics.data_summary": {"tf": 1}, "mathgenerator.statistics.mean_median": {"tf": 1}}, "df": 15, "s": {"docs": {"mathgenerator.misc.binomial_distribution": {"tf": 1}}, "df": 1}}}, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {"mathgenerator.computer_science.fibonacci_series": {"tf": 1.4142135623730951}, "mathgenerator.computer_science.nth_fibonacci_number": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.computer_science.fibonacci_series": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_sum": {"tf": 1}}, "df": 2}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator.misc.surds_comparison": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.algebra.factoring": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.algebra.expanding": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"mathgenerator.algebra.factoring": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator.basic_math.factorial": {"tf": 1}}, "df": 1}}}, "s": {"docs": {"mathgenerator.misc.common_factors": {"tf": 1.4142135623730951}, "mathgenerator.misc.factors": {"tf": 1.4142135623730951}, "mathgenerator.misc.prime_factors": {"tf": 1.4142135623730951}}, "df": 3}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.statistics.dice_sum_probability": {"tf": 1}}, "df": 1}}}, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.misc.celsius_to_fahrenheit": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}, "t": {"docs": {"mathgenerator": {"tf": 1.4142135623730951}}, "df": 1, "h": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator": {"tf": 4}, "mathgenerator.algebra.complex_quadratic": {"tf": 1}, "mathgenerator.algebra.distance_two_points": {"tf": 1}, "mathgenerator.algebra.factoring": {"tf": 1}, "mathgenerator.algebra.intersection_of_two_lines": {"tf": 1.4142135623730951}, "mathgenerator.algebra.linear_equations": {"tf": 1}, "mathgenerator.algebra.line_equation_from_2_points": {"tf": 1.7320508075688772}, "mathgenerator.algebra.midpoint_of_two_points": {"tf": 1}, "mathgenerator.algebra.quadratic_equation": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.compare_fractions": {"tf": 1}, "mathgenerator.basic_math.cube_root": {"tf": 1}, "mathgenerator.basic_math.percentage_difference": {"tf": 1}, "mathgenerator.basic_math.percentage_error": {"tf": 1}, "mathgenerator.calculus.definite_integral": {"tf": 1.4142135623730951}, "mathgenerator.computer_science.decimal_to_octal": {"tf": 1}, "mathgenerator.computer_science.fibonacci_series": {"tf": 1.4142135623730951}, "mathgenerator.computer_science.nth_fibonacci_number": {"tf": 1}, "mathgenerator.geometry.angle_btw_vectors": {"tf": 1}, "mathgenerator.geometry.angle_regular_polygon": {"tf": 1}, "mathgenerator.geometry.arc_length": {"tf": 1.7320508075688772}, "mathgenerator.geometry.complementary_and_supplementary_angle": {"tf": 1}, "mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1.4142135623730951}, "mathgenerator.geometry.perimeter_of_polygons": {"tf": 1}, "mathgenerator.geometry.pythagorean_theorem": {"tf": 1.4142135623730951}, "mathgenerator.geometry.sector_area": {"tf": 1}, "mathgenerator.geometry.sum_of_polygon_angles": {"tf": 1}, "mathgenerator.geometry.volume_cone_frustum": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_sum": {"tf": 1.4142135623730951}, "mathgenerator.misc.arithmetic_progression_term": {"tf": 1}, "mathgenerator.misc.binomial_distribution": {"tf": 1.4142135623730951}, "mathgenerator.misc.decimal_to_roman_numerals": {"tf": 1}, "mathgenerator.misc.euclidian_norm": {"tf": 1}, "mathgenerator.misc.geometric_progression": {"tf": 1.7320508075688772}, "mathgenerator.misc.quotient_of_power_same_base": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_power": {"tf": 1}, "mathgenerator.misc.set_operation": {"tf": 1.4142135623730951}, "mathgenerator.misc.surds_comparison": {"tf": 1}, "mathgenerator.statistics.combinations": {"tf": 1}, "mathgenerator.statistics.conditional_probability": {"tf": 1.4142135623730951}, "mathgenerator.statistics.confidence_interval": {"tf": 1}, "mathgenerator.statistics.data_summary": {"tf": 1.7320508075688772}, "mathgenerator.statistics.dice_sum_probability": {"tf": 1.4142135623730951}, "mathgenerator.statistics.mean_median": {"tf": 2}}, "df": 44, "i": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {"mathgenerator.geometry.pythagorean_theorem": {"tf": 1}}, "df": 1}}}}, "y": {"docs": {"mathgenerator.misc.binomial_distribution": {"tf": 1.4142135623730951}}, "df": 1}}, "a": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator": {"tf": 1.4142135623730951}, "mathgenerator.misc.binomial_distribution": {"tf": 1.4142135623730951}, "mathgenerator.statistics.conditional_probability": {"tf": 1.4142135623730951}}, "df": 3}, "n": {"docs": {"mathgenerator.misc.binomial_distribution": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator": {"tf": 1.4142135623730951}, "mathgenerator.statistics.conditional_probability": {"tf": 1}, "mathgenerator.statistics.mean_median": {"tf": 1}}, "df": 3}, "r": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.geometry.third_angle_of_triangle": {"tf": 1.4142135623730951}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {"mathgenerator.algebra.line_equation_from_2_points": {"tf": 1}, "mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1}}, "df": 2}}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "m": {"docs": {"mathgenerator.misc.arithmetic_progression_term": {"tf": 1.4142135623730951}, "mathgenerator.misc.geometric_progression": {"tf": 2}}, "df": 2, "s": {"docs": {"mathgenerator.algebra.combine_like_terms": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_sum": {"tf": 1}}, "df": 2}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.statistics.conditional_probability": {"tf": 1.4142135623730951}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.statistics.conditional_probability": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {"mathgenerator": {"tf": 4}, "mathgenerator.algebra.int_matrix_22_determinant": {"tf": 1}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1}, "mathgenerator.basic_math.cube_root": {"tf": 1}, "mathgenerator.basic_math.fraction_to_decimal": {"tf": 1}, "mathgenerator.calculus.definite_integral": {"tf": 1}, "mathgenerator.computer_science.bcd_to_decimal": {"tf": 1}, "mathgenerator.computer_science.binary_to_decimal": {"tf": 1}, "mathgenerator.computer_science.binary_to_hex": {"tf": 1}, "mathgenerator.computer_science.decimal_to_bcd": {"tf": 1}, "mathgenerator.computer_science.decimal_to_binary": {"tf": 1}, "mathgenerator.computer_science.decimal_to_hexadeci": {"tf": 1}, "mathgenerator.computer_science.decimal_to_octal": {"tf": 1}, "mathgenerator.geometry.degree_to_rad": {"tf": 1}, "mathgenerator.geometry.radian_to_deg": {"tf": 1}, "mathgenerator.misc.base_conversion": {"tf": 1}, "mathgenerator.misc.celsius_to_fahrenheit": {"tf": 1.4142135623730951}, "mathgenerator.misc.complex_to_polar": {"tf": 1}, "mathgenerator.misc.decimal_to_roman_numerals": {"tf": 1}, "mathgenerator.misc.minutes_to_hours": {"tf": 1.4142135623730951}, "mathgenerator.statistics.conditional_probability": {"tf": 1}}, "df": 21}, "r": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"mathgenerator.calculus.trig_differentiation": {"tf": 1}, "mathgenerator.geometry.basic_trigonometry": {"tf": 1}}, "df": 2}}}}}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.area_of_triangle": {"tf": 1.4142135623730951}, "mathgenerator.geometry.pythagorean_theorem": {"tf": 1}, "mathgenerator.geometry.third_angle_of_triangle": {"tf": 1.4142135623730951}, "mathgenerator.geometry.valid_triangle": {"tf": 1}}, "df": 4}}, "e": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator.geometry.valid_triangle": {"tf": 1}}, "df": 1}}}}}}, "u": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.statistics.conditional_probability": {"tf": 1.4142135623730951}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.algebra.compound_interest": {"tf": 1}, "mathgenerator.algebra.simple_interest": {"tf": 1}, "mathgenerator.statistics.combinations": {"tf": 1}, "mathgenerator.statistics.dice_sum_probability": {"tf": 1}, "mathgenerator.statistics.permutation": {"tf": 1}}, "df": 5, "s": {"docs": {"mathgenerator.algebra.vector_cross": {"tf": 1}, "mathgenerator.misc.product_of_scientific_notations": {"tf": 1.7320508075688772}}, "df": 2}}}}, "w": {"docs": {}, "df": 0, "o": {"docs": {"mathgenerator.algebra.intersection_of_two_lines": {"tf": 1.4142135623730951}, "mathgenerator.algebra.line_equation_from_2_points": {"tf": 1}, "mathgenerator.algebra.matrix_multiplication": {"tf": 1}, "mathgenerator.algebra.midpoint_of_two_points": {"tf": 1}, "mathgenerator.basic_math.absolute_difference": {"tf": 1}, "mathgenerator.basic_math.addition": {"tf": 1}, "mathgenerator.basic_math.percentage_difference": {"tf": 1}, "mathgenerator.basic_math.subtraction": {"tf": 1}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}, "mathgenerator.geometry.pythagorean_theorem": {"tf": 1}, "mathgenerator.misc.set_operation": {"tf": 1.4142135623730951}}, "df": 11}}}, "o": {"docs": {}, "df": 0, "f": {"docs": {"mathgenerator": {"tf": 2.449489742783178}, "mathgenerator.algebra.complex_quadratic": {"tf": 1}, "mathgenerator.algebra.compound_interest": {"tf": 1.7320508075688772}, "mathgenerator.algebra.intersection_of_two_lines": {"tf": 1.7320508075688772}, "mathgenerator.algebra.invert_matrix": {"tf": 1}, "mathgenerator.algebra.line_equation_from_2_points": {"tf": 1.4142135623730951}, "mathgenerator.algebra.midpoint_of_two_points": {"tf": 1.4142135623730951}, "mathgenerator.algebra.multiply_complex_numbers": {"tf": 1}, "mathgenerator.algebra.quadratic_equation": {"tf": 1}, "mathgenerator.algebra.simple_interest": {"tf": 1.7320508075688772}, "mathgenerator.algebra.system_of_equations": {"tf": 1}, "mathgenerator.algebra.vector_cross": {"tf": 1}, "mathgenerator.algebra.vector_dot": {"tf": 1}, "mathgenerator.basic_math.addition": {"tf": 1}, "mathgenerator.basic_math.cube_root": {"tf": 1}, "mathgenerator.basic_math.greatest_common_divisor": {"tf": 1}, "mathgenerator.basic_math.percentage": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.power_of_powers": {"tf": 1}, "mathgenerator.basic_math.subtraction": {"tf": 1}, "mathgenerator.calculus.definite_integral": {"tf": 1.4142135623730951}, "mathgenerator.computer_science.bcd_to_decimal": {"tf": 1}, "mathgenerator.computer_science.binary_2s_complement": {"tf": 1}, "mathgenerator.computer_science.decimal_to_bcd": {"tf": 1}, "mathgenerator.computer_science.decimal_to_binary": {"tf": 1}, "mathgenerator.computer_science.decimal_to_hexadeci": {"tf": 1}, "mathgenerator.computer_science.fibonacci_series": {"tf": 1}, "mathgenerator.geometry.angle_regular_polygon": {"tf": 1.4142135623730951}, "mathgenerator.geometry.arc_length": {"tf": 1.7320508075688772}, "mathgenerator.geometry.area_of_circle": {"tf": 1.4142135623730951}, "mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1.4142135623730951}, "mathgenerator.geometry.area_of_triangle": {"tf": 1.4142135623730951}, "mathgenerator.geometry.circumference": {"tf": 1.4142135623730951}, "mathgenerator.geometry.complementary_and_supplementary_angle": {"tf": 1}, "mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1.7320508075688772}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1.4142135623730951}, "mathgenerator.geometry.fourth_angle_of_quadrilateral": {"tf": 1.4142135623730951}, "mathgenerator.geometry.perimeter_of_polygons": {"tf": 1.7320508075688772}, "mathgenerator.geometry.pythagorean_theorem": {"tf": 1}, "mathgenerator.geometry.sector_area": {"tf": 1.4142135623730951}, "mathgenerator.geometry.sum_of_polygon_angles": {"tf": 2}, "mathgenerator.geometry.surface_area_cone": {"tf": 1.4142135623730951}, "mathgenerator.geometry.surface_area_cube": {"tf": 1.4142135623730951}, "mathgenerator.geometry.surface_area_cuboid": {"tf": 1.7320508075688772}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 1.4142135623730951}, "mathgenerator.geometry.surface_area_pyramid": {"tf": 1.4142135623730951}, "mathgenerator.geometry.surface_area_sphere": {"tf": 1.4142135623730951}, "mathgenerator.geometry.third_angle_of_triangle": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_cone": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_cube": {"tf": 1.7320508075688772}, "mathgenerator.geometry.volume_cuboid": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_cylinder": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_cone_frustum": {"tf": 1.7320508075688772}, "mathgenerator.geometry.volume_hemisphere": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_pyramid": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_sphere": {"tf": 1.4142135623730951}, "mathgenerator.misc.arithmetic_progression_sum": {"tf": 1.4142135623730951}, "mathgenerator.misc.arithmetic_progression_term": {"tf": 1}, "mathgenerator.misc.binomial_distribution": {"tf": 1.7320508075688772}, "mathgenerator.misc.common_factors": {"tf": 1}, "mathgenerator.misc.euclidian_norm": {"tf": 1.4142135623730951}, "mathgenerator.misc.factors": {"tf": 1.4142135623730951}, "mathgenerator.misc.geometric_mean": {"tf": 1.4142135623730951}, "mathgenerator.misc.geometric_progression": {"tf": 1.4142135623730951}, "mathgenerator.misc.harmonic_mean": {"tf": 1.4142135623730951}, "mathgenerator.misc.lcm": {"tf": 1}, "mathgenerator.misc.prime_factors": {"tf": 1}, "mathgenerator.misc.product_of_scientific_notations": {"tf": 1.4142135623730951}, "mathgenerator.misc.quotient_of_power_same_base": {"tf": 1.4142135623730951}, "mathgenerator.misc.quotient_of_power_same_power": {"tf": 1.4142135623730951}, "mathgenerator.misc.set_operation": {"tf": 1}, "mathgenerator.misc.signum_function": {"tf": 1}, "mathgenerator.statistics.combinations": {"tf": 1.4142135623730951}, "mathgenerator.statistics.conditional_probability": {"tf": 1}, "mathgenerator.statistics.dice_sum_probability": {"tf": 2}, "mathgenerator.statistics.mean_median": {"tf": 2}, "mathgenerator.statistics.permutation": {"tf": 1}}, "df": 76}, "u": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.basic_math.percentage_error": {"tf": 1}}, "df": 1}}}}}}, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.statistics.combinations": {"tf": 1.4142135623730951}, "mathgenerator.statistics.permutation": {"tf": 1}}, "df": 2}}}}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator.computer_science.decimal_to_octal": {"tf": 1.4142135623730951}}, "df": 1}}}}, "n": {"docs": {"mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1}, "mathgenerator.misc.binomial_distribution": {"tf": 1}, "mathgenerator.statistics.dice_sum_probability": {"tf": 1}}, "df": 3, "l": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.statistics.conditional_probability": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.geometry.pythagorean_theorem": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {"mathgenerator.misc.euclidian_norm": {"tf": 1.4142135623730951}, "mathgenerator.misc.is_leap_year": {"tf": 1}, "mathgenerator.misc.profit_loss_percent": {"tf": 1}}, "df": 3}}, "s": {"docs": {"mathgenerator.algebra.factoring": {"tf": 1}, "mathgenerator.computer_science.binary_2s_complement": {"tf": 1.4142135623730951}, "mathgenerator.statistics.confidence_interval": {"tf": 1}}, "df": 3, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.calculus.stationary_points": {"tf": 1}}, "df": 1}}}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.statistics.data_summary": {"tf": 1.7320508075688772}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}, "b": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.basic_math.subtraction": {"tf": 1}}, "df": 1}}}}}}}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.geometry.complementary_and_supplementary_angle": {"tf": 1}}, "df": 1}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1.4142135623730951}, "mathgenerator.geometry.surface_area_cone": {"tf": 1.4142135623730951}, "mathgenerator.geometry.surface_area_cube": {"tf": 1.4142135623730951}, "mathgenerator.geometry.surface_area_cuboid": {"tf": 1.4142135623730951}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 1.4142135623730951}, "mathgenerator.geometry.surface_area_pyramid": {"tf": 1.4142135623730951}, "mathgenerator.geometry.surface_area_sphere": {"tf": 1.4142135623730951}}, "df": 7}}}}, "d": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.misc.surds_comparison": {"tf": 1}}, "df": 1}}}, "m": {"docs": {"mathgenerator.geometry.sum_of_polygon_angles": {"tf": 1.4142135623730951}, "mathgenerator.misc.arithmetic_progression_sum": {"tf": 1.4142135623730951}, "mathgenerator.misc.geometric_progression": {"tf": 1.4142135623730951}, "mathgenerator.statistics.dice_sum_probability": {"tf": 1.4142135623730951}}, "df": 4}}, "e": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator": {"tf": 1.4142135623730951}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.geometry.sector_area": {"tf": 1.4142135623730951}}, "df": 1}}}}, "t": {"docs": {"mathgenerator": {"tf": 1.7320508075688772}}, "df": 1, "s": {"docs": {"mathgenerator.misc.set_operation": {"tf": 1.4142135623730951}}, "df": 1}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.computer_science.fibonacci_series": {"tf": 1.4142135623730951}, "mathgenerator.misc.arithmetic_progression_sum": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_term": {"tf": 1}, "mathgenerator.statistics.mean_median": {"tf": 2}}, "df": 4}}}}, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.statistics.conditional_probability": {"tf": 1}}, "df": 1}}}}}}}}}}, "o": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator": {"tf": 2.449489742783178}, "mathgenerator.algebra.basic_algebra": {"tf": 1}, "mathgenerator.algebra.combine_like_terms": {"tf": 1}, "mathgenerator.algebra.complex_quadratic": {"tf": 1}, "mathgenerator.algebra.compound_interest": {"tf": 1}, "mathgenerator.algebra.distance_two_points": {"tf": 1}, "mathgenerator.algebra.expanding": {"tf": 1}, "mathgenerator.algebra.factoring": {"tf": 1}, "mathgenerator.algebra.int_matrix_22_determinant": {"tf": 1}, "mathgenerator.algebra.intersection_of_two_lines": {"tf": 1}, "mathgenerator.algebra.invert_matrix": {"tf": 1}, "mathgenerator.algebra.linear_equations": {"tf": 1}, "mathgenerator.algebra.line_equation_from_2_points": {"tf": 1}, "mathgenerator.algebra.log": {"tf": 1}, "mathgenerator.algebra.matrix_multiplication": {"tf": 1}, "mathgenerator.algebra.midpoint_of_two_points": {"tf": 1}, "mathgenerator.algebra.multiply_complex_numbers": {"tf": 1}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1}, "mathgenerator.algebra.quadratic_equation": {"tf": 1}, "mathgenerator.algebra.simple_interest": {"tf": 1}, "mathgenerator.algebra.system_of_equations": {"tf": 1}, "mathgenerator.algebra.vector_cross": {"tf": 1}, "mathgenerator.algebra.vector_dot": {"tf": 1}, "mathgenerator.basic_math.absolute_difference": {"tf": 1}, "mathgenerator.basic_math.addition": {"tf": 1}, "mathgenerator.basic_math.compare_fractions": {"tf": 1}, "mathgenerator.basic_math.cube_root": {"tf": 1}, "mathgenerator.basic_math.divide_fractions": {"tf": 1}, "mathgenerator.basic_math.division": {"tf": 1}, "mathgenerator.basic_math.exponentiation": {"tf": 1}, "mathgenerator.basic_math.factorial": {"tf": 1}, "mathgenerator.basic_math.fraction_multiplication": {"tf": 1}, "mathgenerator.basic_math.fraction_to_decimal": {"tf": 1}, "mathgenerator.basic_math.greatest_common_divisor": {"tf": 1}, "mathgenerator.basic_math.is_composite": {"tf": 1}, "mathgenerator.basic_math.is_prime": {"tf": 1}, "mathgenerator.basic_math.multiplication": {"tf": 1}, "mathgenerator.basic_math.percentage": {"tf": 1}, "mathgenerator.basic_math.percentage_difference": {"tf": 1}, "mathgenerator.basic_math.percentage_error": {"tf": 1}, "mathgenerator.basic_math.power_of_powers": {"tf": 1}, "mathgenerator.basic_math.square": {"tf": 1}, "mathgenerator.basic_math.square_root": {"tf": 1}, "mathgenerator.basic_math.simplify_square_root": {"tf": 1}, "mathgenerator.basic_math.subtraction": {"tf": 1}, "mathgenerator.calculus.definite_integral": {"tf": 1}, "mathgenerator.calculus.power_rule_differentiation": {"tf": 1}, "mathgenerator.calculus.power_rule_integration": {"tf": 1}, "mathgenerator.calculus.stationary_points": {"tf": 1}, "mathgenerator.calculus.trig_differentiation": {"tf": 1}, "mathgenerator.computer_science.bcd_to_decimal": {"tf": 1}, "mathgenerator.computer_science.binary_2s_complement": {"tf": 1}, "mathgenerator.computer_science.binary_complement_1s": {"tf": 1}, "mathgenerator.computer_science.binary_to_decimal": {"tf": 1}, "mathgenerator.computer_science.binary_to_hex": {"tf": 1}, "mathgenerator.computer_science.decimal_to_bcd": {"tf": 1}, "mathgenerator.computer_science.decimal_to_binary": {"tf": 1}, "mathgenerator.computer_science.decimal_to_hexadeci": {"tf": 1}, "mathgenerator.computer_science.decimal_to_octal": {"tf": 1}, "mathgenerator.computer_science.fibonacci_series": {"tf": 1}, "mathgenerator.computer_science.modulo_division": {"tf": 1}, "mathgenerator.computer_science.nth_fibonacci_number": {"tf": 1}, "mathgenerator.geometry.angle_btw_vectors": {"tf": 1}, "mathgenerator.geometry.angle_regular_polygon": {"tf": 1}, "mathgenerator.geometry.arc_length": {"tf": 1}, "mathgenerator.geometry.area_of_circle": {"tf": 1}, "mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1}, "mathgenerator.geometry.area_of_triangle": {"tf": 1}, "mathgenerator.geometry.basic_trigonometry": {"tf": 1}, "mathgenerator.geometry.circumference": {"tf": 1}, "mathgenerator.geometry.complementary_and_supplementary_angle": {"tf": 1}, "mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.degree_to_rad": {"tf": 1}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}, "mathgenerator.geometry.fourth_angle_of_quadrilateral": {"tf": 1}, "mathgenerator.geometry.perimeter_of_polygons": {"tf": 1}, "mathgenerator.geometry.pythagorean_theorem": {"tf": 1}, "mathgenerator.geometry.sector_area": {"tf": 1}, "mathgenerator.geometry.sum_of_polygon_angles": {"tf": 1}, "mathgenerator.geometry.surface_area_cone": {"tf": 1}, "mathgenerator.geometry.surface_area_cube": {"tf": 1}, "mathgenerator.geometry.surface_area_cuboid": {"tf": 1}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.surface_area_pyramid": {"tf": 1}, "mathgenerator.geometry.surface_area_sphere": {"tf": 1}, "mathgenerator.geometry.third_angle_of_triangle": {"tf": 1}, "mathgenerator.geometry.valid_triangle": {"tf": 1}, "mathgenerator.geometry.volume_cone": {"tf": 1}, "mathgenerator.geometry.volume_cube": {"tf": 1}, "mathgenerator.geometry.volume_cuboid": {"tf": 1}, "mathgenerator.geometry.volume_cylinder": {"tf": 1}, "mathgenerator.geometry.volume_cone_frustum": {"tf": 1}, "mathgenerator.geometry.volume_hemisphere": {"tf": 1}, "mathgenerator.geometry.volume_pyramid": {"tf": 1}, "mathgenerator.geometry.volume_sphere": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_sum": {"tf": 1}, "mathgenerator.misc.arithmetic_progression_term": {"tf": 1}, "mathgenerator.misc.base_conversion": {"tf": 1}, "mathgenerator.misc.binomial_distribution": {"tf": 1}, "mathgenerator.misc.celsius_to_fahrenheit": {"tf": 1}, "mathgenerator.misc.common_factors": {"tf": 1}, "mathgenerator.misc.complex_to_polar": {"tf": 1}, "mathgenerator.misc.decimal_to_roman_numerals": {"tf": 1}, "mathgenerator.misc.euclidian_norm": {"tf": 1}, "mathgenerator.misc.factors": {"tf": 1}, "mathgenerator.misc.geometric_mean": {"tf": 1}, "mathgenerator.misc.geometric_progression": {"tf": 1}, "mathgenerator.misc.harmonic_mean": {"tf": 1}, "mathgenerator.misc.is_leap_year": {"tf": 1}, "mathgenerator.misc.lcm": {"tf": 1}, "mathgenerator.misc.minutes_to_hours": {"tf": 1}, "mathgenerator.misc.prime_factors": {"tf": 1}, "mathgenerator.misc.product_of_scientific_notations": {"tf": 1}, "mathgenerator.misc.profit_loss_percent": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_base": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_power": {"tf": 1}, "mathgenerator.misc.set_operation": {"tf": 1}, "mathgenerator.misc.signum_function": {"tf": 1}, "mathgenerator.misc.surds_comparison": {"tf": 1}, "mathgenerator.statistics.combinations": {"tf": 1}, "mathgenerator.statistics.conditional_probability": {"tf": 1}, "mathgenerator.statistics.confidence_interval": {"tf": 1}, "mathgenerator.statistics.data_summary": {"tf": 1}, "mathgenerator.statistics.dice_sum_probability": {"tf": 1}, "mathgenerator.statistics.mean_median": {"tf": 1}, "mathgenerator.statistics.permutation": {"tf": 1}}, "df": 126}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.algebra.linear_equations": {"tf": 1}, "mathgenerator.algebra.system_of_equations": {"tf": 1.4142135623730951}}, "df": 2}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.statistics.conditional_probability": {"tf": 1}}, "df": 1}}}}}}, "p": {"docs": {"mathgenerator.misc.profit_loss_percent": {"tf": 1}, "mathgenerator.statistics.conditional_probability": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.statistics.conditional_probability": {"tf": 1}}, "df": 1}}}}}}}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.surface_area_sphere": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_sphere": {"tf": 1.4142135623730951}}, "df": 2}}}}}, "q": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "{": {"1": {"2": {"5": {"6": {"docs": {"mathgenerator.algebra.distance_two_points": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "3": {"2": {"docs": {}, "df": 0, "}": {"docs": {}, "df": 0, "}": {"docs": {}, "df": 0, "{": {"2": {"docs": {"mathgenerator.algebra.complex_quadratic": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0}}}}, "docs": {}, "df": 0}, "6": {"3": {"docs": {"mathgenerator.basic_math.simplify_square_root": {"tf": 1}}, "df": 1}, "4": {"docs": {"mathgenerator.basic_math.square_root": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "[": {"3": {"docs": {}, "df": 0, "]": {"docs": {}, "df": 0, "{": {"1": {"2": {"5": {"docs": {"mathgenerator.basic_math.cube_root": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}, "docs": {}, "df": 0}}}, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.basic_math.square": {"tf": 1}, "mathgenerator.basic_math.square_root": {"tf": 1}, "mathgenerator.basic_math.simplify_square_root": {"tf": 1}}, "df": 3}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.algebra.simple_interest": {"tf": 1.4142135623730951}}, "df": 1}, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.basic_math.power_of_powers": {"tf": 1}, "mathgenerator.basic_math.simplify_square_root": {"tf": 1}}, "df": 2}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.area_of_triangle": {"tf": 1}, "mathgenerator.geometry.surface_area_cube": {"tf": 1}, "mathgenerator.geometry.volume_cube": {"tf": 1}}, "df": 3, "s": {"docs": {"mathgenerator.geometry.angle_regular_polygon": {"tf": 1}, "mathgenerator.geometry.pythagorean_theorem": {"tf": 1}, "mathgenerator.geometry.sum_of_polygon_angles": {"tf": 1}, "mathgenerator.geometry.surface_area_cuboid": {"tf": 1}, "mathgenerator.geometry.valid_triangle": {"tf": 1}, "mathgenerator.geometry.volume_cuboid": {"tf": 1}}, "df": 6}, "d": {"docs": {"mathgenerator.geometry.perimeter_of_polygons": {"tf": 1}}, "df": 1}}}, "n": {"docs": {"mathgenerator.geometry.basic_trigonometry": {"tf": 1}}, "df": 1}, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.misc.binomial_distribution": {"tf": 1}}, "df": 1}}}, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"mathgenerator.misc.signum_function": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "y": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {"mathgenerator.algebra.system_of_equations": {"tf": 1}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator.basic_math.compare_fractions": {"tf": 1}}, "df": 1}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"mathgenerator.misc.set_operation": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"mathgenerator.misc.product_of_scientific_notations": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.misc.quotient_of_power_same_base": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_power": {"tf": 1}, "mathgenerator.statistics.dice_sum_probability": {"tf": 1}}, "df": 3}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.statistics.confidence_interval": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "n": {"docs": {"mathgenerator.statistics.conditional_probability": {"tf": 1}}, "df": 1}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {"mathgenerator": {"tf": 1.4142135623730951}}, "df": 1}}}, "x": {"docs": {"mathgenerator.algebra.basic_algebra": {"tf": 1.4142135623730951}, "mathgenerator.algebra.combine_like_terms": {"tf": 1.4142135623730951}, "mathgenerator.algebra.complex_quadratic": {"tf": 1.4142135623730951}, "mathgenerator.algebra.compound_interest": {"tf": 1.4142135623730951}, "mathgenerator.algebra.distance_two_points": {"tf": 1.4142135623730951}, "mathgenerator.algebra.expanding": {"tf": 1.4142135623730951}, "mathgenerator.algebra.factoring": {"tf": 1.4142135623730951}, "mathgenerator.algebra.int_matrix_22_determinant": {"tf": 1.4142135623730951}, "mathgenerator.algebra.intersection_of_two_lines": {"tf": 1.4142135623730951}, "mathgenerator.algebra.invert_matrix": {"tf": 1.4142135623730951}, "mathgenerator.algebra.linear_equations": {"tf": 1.4142135623730951}, "mathgenerator.algebra.line_equation_from_2_points": {"tf": 1.4142135623730951}, "mathgenerator.algebra.log": {"tf": 1.4142135623730951}, "mathgenerator.algebra.matrix_multiplication": {"tf": 1.4142135623730951}, "mathgenerator.algebra.midpoint_of_two_points": {"tf": 1.4142135623730951}, "mathgenerator.algebra.multiply_complex_numbers": {"tf": 1.4142135623730951}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1.4142135623730951}, "mathgenerator.algebra.quadratic_equation": {"tf": 1.4142135623730951}, "mathgenerator.algebra.simple_interest": {"tf": 1.4142135623730951}, "mathgenerator.algebra.system_of_equations": {"tf": 1.4142135623730951}, "mathgenerator.algebra.vector_cross": {"tf": 1.4142135623730951}, "mathgenerator.algebra.vector_dot": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.absolute_difference": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.addition": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.compare_fractions": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.cube_root": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.divide_fractions": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.division": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.exponentiation": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.factorial": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.fraction_multiplication": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.fraction_to_decimal": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.greatest_common_divisor": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.is_composite": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.is_prime": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.multiplication": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.percentage": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.percentage_difference": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.percentage_error": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.power_of_powers": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.square": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.square_root": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.simplify_square_root": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.subtraction": {"tf": 1.4142135623730951}, "mathgenerator.calculus.definite_integral": {"tf": 1.4142135623730951}, "mathgenerator.calculus.power_rule_differentiation": {"tf": 1.4142135623730951}, "mathgenerator.calculus.power_rule_integration": {"tf": 1.4142135623730951}, "mathgenerator.calculus.stationary_points": {"tf": 1.4142135623730951}, "mathgenerator.calculus.trig_differentiation": {"tf": 1.4142135623730951}, "mathgenerator.computer_science.bcd_to_decimal": {"tf": 1.4142135623730951}, "mathgenerator.computer_science.binary_2s_complement": {"tf": 1.4142135623730951}, "mathgenerator.computer_science.binary_complement_1s": {"tf": 1.4142135623730951}, "mathgenerator.computer_science.binary_to_decimal": {"tf": 1.4142135623730951}, "mathgenerator.computer_science.binary_to_hex": {"tf": 1.4142135623730951}, "mathgenerator.computer_science.decimal_to_bcd": {"tf": 1.4142135623730951}, "mathgenerator.computer_science.decimal_to_binary": {"tf": 1.4142135623730951}, "mathgenerator.computer_science.decimal_to_hexadeci": {"tf": 1.4142135623730951}, "mathgenerator.computer_science.decimal_to_octal": {"tf": 1.4142135623730951}, "mathgenerator.computer_science.fibonacci_series": {"tf": 1.4142135623730951}, "mathgenerator.computer_science.modulo_division": {"tf": 1.4142135623730951}, "mathgenerator.computer_science.nth_fibonacci_number": {"tf": 1.4142135623730951}, "mathgenerator.geometry.angle_btw_vectors": {"tf": 1.4142135623730951}, "mathgenerator.geometry.angle_regular_polygon": {"tf": 1.4142135623730951}, "mathgenerator.geometry.arc_length": {"tf": 1.4142135623730951}, "mathgenerator.geometry.area_of_circle": {"tf": 1.4142135623730951}, "mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1.4142135623730951}, "mathgenerator.geometry.area_of_triangle": {"tf": 1.4142135623730951}, "mathgenerator.geometry.basic_trigonometry": {"tf": 1.4142135623730951}, "mathgenerator.geometry.circumference": {"tf": 1.4142135623730951}, "mathgenerator.geometry.complementary_and_supplementary_angle": {"tf": 1.4142135623730951}, "mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1.4142135623730951}, "mathgenerator.geometry.degree_to_rad": {"tf": 1.4142135623730951}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1.4142135623730951}, "mathgenerator.geometry.fourth_angle_of_quadrilateral": {"tf": 1.4142135623730951}, "mathgenerator.geometry.perimeter_of_polygons": {"tf": 1.4142135623730951}, "mathgenerator.geometry.pythagorean_theorem": {"tf": 1.4142135623730951}, "mathgenerator.geometry.sector_area": {"tf": 1.4142135623730951}, "mathgenerator.geometry.sum_of_polygon_angles": {"tf": 1.4142135623730951}, "mathgenerator.geometry.surface_area_cone": {"tf": 1.4142135623730951}, "mathgenerator.geometry.surface_area_cube": {"tf": 1.4142135623730951}, "mathgenerator.geometry.surface_area_cuboid": {"tf": 1.4142135623730951}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 1.4142135623730951}, "mathgenerator.geometry.surface_area_pyramid": {"tf": 1.4142135623730951}, "mathgenerator.geometry.surface_area_sphere": {"tf": 1.4142135623730951}, "mathgenerator.geometry.third_angle_of_triangle": {"tf": 1.4142135623730951}, "mathgenerator.geometry.valid_triangle": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_cone": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_cube": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_cuboid": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_cylinder": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_cone_frustum": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_hemisphere": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_pyramid": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_sphere": {"tf": 1.4142135623730951}, "mathgenerator.misc.arithmetic_progression_sum": {"tf": 1.4142135623730951}, "mathgenerator.misc.arithmetic_progression_term": {"tf": 1.4142135623730951}, "mathgenerator.misc.base_conversion": {"tf": 1.4142135623730951}, "mathgenerator.misc.binomial_distribution": {"tf": 1.4142135623730951}, "mathgenerator.misc.celsius_to_fahrenheit": {"tf": 1.4142135623730951}, "mathgenerator.misc.common_factors": {"tf": 1.4142135623730951}, "mathgenerator.misc.complex_to_polar": {"tf": 1.4142135623730951}, "mathgenerator.misc.decimal_to_roman_numerals": {"tf": 1.4142135623730951}, "mathgenerator.misc.euclidian_norm": {"tf": 1.4142135623730951}, "mathgenerator.misc.factors": {"tf": 1.4142135623730951}, "mathgenerator.misc.geometric_mean": {"tf": 1.4142135623730951}, "mathgenerator.misc.geometric_progression": {"tf": 1.4142135623730951}, "mathgenerator.misc.harmonic_mean": {"tf": 1.4142135623730951}, "mathgenerator.misc.is_leap_year": {"tf": 1.4142135623730951}, "mathgenerator.misc.lcm": {"tf": 1.4142135623730951}, "mathgenerator.misc.minutes_to_hours": {"tf": 1.4142135623730951}, "mathgenerator.misc.prime_factors": {"tf": 1.4142135623730951}, "mathgenerator.misc.product_of_scientific_notations": {"tf": 1.4142135623730951}, "mathgenerator.misc.profit_loss_percent": {"tf": 1.4142135623730951}, "mathgenerator.misc.quotient_of_power_same_base": {"tf": 1.4142135623730951}, "mathgenerator.misc.quotient_of_power_same_power": {"tf": 1.4142135623730951}, "mathgenerator.misc.set_operation": {"tf": 1.4142135623730951}, "mathgenerator.misc.signum_function": {"tf": 1.4142135623730951}, "mathgenerator.misc.surds_comparison": {"tf": 1.4142135623730951}, "mathgenerator.statistics.combinations": {"tf": 1.4142135623730951}, "mathgenerator.statistics.conditional_probability": {"tf": 1.4142135623730951}, "mathgenerator.statistics.confidence_interval": {"tf": 1.4142135623730951}, "mathgenerator.statistics.data_summary": {"tf": 1.4142135623730951}, "mathgenerator.statistics.dice_sum_probability": {"tf": 1.4142135623730951}, "mathgenerator.statistics.mean_median": {"tf": 1.4142135623730951}, "mathgenerator.statistics.permutation": {"tf": 1.4142135623730951}}, "df": 125, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator": {"tf": 1.4142135623730951}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.basic_math.percentage_error": {"tf": 1}}, "df": 1}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"mathgenerator.algebra.expanding": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.basic_math.exponentiation": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.geometry.valid_triangle": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1, "{": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {"mathgenerator.algebra.int_matrix_22_determinant": {"tf": 1}, "mathgenerator.algebra.invert_matrix": {"tf": 1.4142135623730951}, "mathgenerator.algebra.matrix_multiplication": {"tf": 1.7320508075688772}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1.4142135623730951}}, "df": 4}}}}}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.algebra.complex_quadratic": {"tf": 1.4142135623730951}, "mathgenerator.algebra.factoring": {"tf": 1}, "mathgenerator.algebra.line_equation_from_2_points": {"tf": 1.4142135623730951}, "mathgenerator.algebra.quadratic_equation": {"tf": 1.4142135623730951}, "mathgenerator.calculus.definite_integral": {"tf": 1.4142135623730951}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1.4142135623730951}}, "df": 6, "s": {"docs": {"mathgenerator.algebra.linear_equations": {"tf": 1.4142135623730951}, "mathgenerator.algebra.system_of_equations": {"tf": 1}}, "df": 2}}}}}, "l": {"docs": {"mathgenerator.statistics.conditional_probability": {"tf": 1}}, "df": 1, "s": {"docs": {"mathgenerator.basic_math.percentage_error": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.basic_math.percentage_error": {"tf": 1.4142135623730951}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.misc.euclidian_norm": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}, "r": {"1": {"docs": {"mathgenerator.geometry.volume_cone_frustum": {"tf": 1}}, "df": 1}, "2": {"docs": {"mathgenerator.geometry.volume_cone_frustum": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}, "w": {"docs": {"mathgenerator": {"tf": 1.4142135623730951}}, "df": 1}, "t": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.algebra.compound_interest": {"tf": 1}, "mathgenerator.algebra.simple_interest": {"tf": 1}}, "df": 2}, "i": {"docs": {}, "df": 0, "o": {"docs": {"mathgenerator.misc.geometric_progression": {"tf": 1.4142135623730951}}, "df": 1}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.geometry.angle_btw_vectors": {"tf": 1}, "mathgenerator.geometry.degree_to_rad": {"tf": 1.4142135623730951}, "mathgenerator.geometry.radian_to_deg": {"tf": 1}}, "df": 3}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.geometry.arc_length": {"tf": 1}, "mathgenerator.geometry.area_of_circle": {"tf": 1}, "mathgenerator.geometry.circumference": {"tf": 1}, "mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.sector_area": {"tf": 1}, "mathgenerator.geometry.surface_area_cone": {"tf": 1}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.surface_area_sphere": {"tf": 1}, "mathgenerator.geometry.volume_cone": {"tf": 1}, "mathgenerator.geometry.volume_cylinder": {"tf": 1}, "mathgenerator.geometry.volume_hemisphere": {"tf": 1}, "mathgenerator.geometry.volume_sphere": {"tf": 1}}, "df": 12}}}}, "c": {"docs": {}, "df": 0, "{": {"4": {"docs": {}, "df": 0, "}": {"docs": {}, "df": 0, "{": {"3": {"6": {"docs": {"mathgenerator.statistics.dice_sum_probability": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}, "docs": {}, "df": 0}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}, "l": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.calculus.power_rule_differentiation": {"tf": 1}, "mathgenerator.calculus.power_rule_integration": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator": {"tf": 2.23606797749979}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.basic_math.compare_fractions": {"tf": 1}}, "df": 1}}}}}}}}, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.geometry.angle_regular_polygon": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.misc.binomial_distribution": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.statistics.conditional_probability": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.basic_math.cube_root": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.square_root": {"tf": 1}, "mathgenerator.basic_math.simplify_square_root": {"tf": 1}}, "df": 3, "s": {"docs": {"mathgenerator.algebra.complex_quadratic": {"tf": 1}, "mathgenerator.algebra.factoring": {"tf": 1}}, "df": 2}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.misc.decimal_to_roman_numerals": {"tf": 1.4142135623730951}}, "df": 1}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.statistics.dice_sum_probability": {"tf": 1}}, "df": 1}}}}}, "^": {"2": {"docs": {"mathgenerator.algebra.system_of_equations": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.geometry.pythagorean_theorem": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {"mathgenerator.basic_math.greatest_common_divisor": {"tf": 1}, "mathgenerator.computer_science.fibonacci_series": {"tf": 1}, "mathgenerator.misc.geometric_mean": {"tf": 1}, "mathgenerator.misc.harmonic_mean": {"tf": 1}}, "df": 4, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}}}, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.statistics.conditional_probability": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {"mathgenerator.geometry.valid_triangle": {"tf": 1}, "mathgenerator.misc.binomial_distribution": {"tf": 1}}, "df": 2, "t": {"docs": {"mathgenerator": {"tf": 1.4142135623730951}, "mathgenerator.misc.is_leap_year": {"tf": 1}}, "df": 2, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.misc.product_of_scientific_notations": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "m": {"docs": {"mathgenerator.misc.euclidian_norm": {"tf": 2}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator": {"tf": 1.4142135623730951}}, "df": 1}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.statistics.conditional_probability": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.basic_math.percentage": {"tf": 1}, "mathgenerator.computer_science.decimal_to_bcd": {"tf": 1}, "mathgenerator.computer_science.decimal_to_octal": {"tf": 1}, "mathgenerator.computer_science.nth_fibonacci_number": {"tf": 1.4142135623730951}, "mathgenerator.misc.arithmetic_progression_term": {"tf": 1}, "mathgenerator.misc.decimal_to_roman_numerals": {"tf": 1}, "mathgenerator.misc.factors": {"tf": 1}, "mathgenerator.statistics.combinations": {"tf": 1}, "mathgenerator.statistics.permutation": {"tf": 1}}, "df": 9, "s": {"docs": {"mathgenerator.algebra.multiply_complex_numbers": {"tf": 1}, "mathgenerator.basic_math.absolute_difference": {"tf": 1}, "mathgenerator.basic_math.addition": {"tf": 1}, "mathgenerator.basic_math.greatest_common_divisor": {"tf": 1}, "mathgenerator.basic_math.percentage_difference": {"tf": 1}, "mathgenerator.basic_math.subtraction": {"tf": 1}, "mathgenerator.computer_science.fibonacci_series": {"tf": 1}, "mathgenerator.misc.geometric_mean": {"tf": 1.4142135623730951}, "mathgenerator.misc.harmonic_mean": {"tf": 1.4142135623730951}, "mathgenerator.statistics.mean_median": {"tf": 1}}, "df": 10}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.misc.decimal_to_roman_numerals": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"mathgenerator.computer_science.nth_fibonacci_number": {"tf": 1}}, "df": 1}}}, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, ":": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"3": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "w": {"docs": {"mathgenerator": {"tf": 1.7320508075688772}}, "df": 1}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.misc.minutes_to_hours": {"tf": 1.7320508075688772}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator": {"tf": 1.4142135623730951}}, "df": 1}}, "x": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator.computer_science.binary_to_hex": {"tf": 1}}, "df": 1}}}}}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator.computer_science.decimal_to_hexadeci": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.surface_area_cone": {"tf": 1}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.surface_area_pyramid": {"tf": 1}, "mathgenerator.geometry.volume_cone": {"tf": 1}, "mathgenerator.geometry.volume_cylinder": {"tf": 1}, "mathgenerator.geometry.volume_cone_frustum": {"tf": 1}, "mathgenerator.geometry.volume_pyramid": {"tf": 1}}, "df": 8}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.volume_hemisphere": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator": {"tf": 1}, "mathgenerator.geometry.pythagorean_theorem": {"tf": 1}, "mathgenerator.statistics.conditional_probability": {"tf": 1}}, "df": 3}}, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"mathgenerator.misc.harmonic_mean": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "s": {"docs": {"mathgenerator.statistics.conditional_probability": {"tf": 1}}, "df": 1}}, "c": {"docs": {}, "df": 0, "f": {"docs": {"mathgenerator.basic_math.greatest_common_divisor": {"tf": 1}}, "df": 1}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.pythagorean_theorem": {"tf": 1}}, "df": 1}}}}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}}}}}, "t": {"docs": {"mathgenerator.algebra.int_matrix_22_determinant": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.algebra.int_matrix_22_determinant": {"tf": 1}}, "df": 1}}}}}}}}}, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator.basic_math.cube_root": {"tf": 1}, "mathgenerator.basic_math.fraction_to_decimal": {"tf": 1}, "mathgenerator.computer_science.bcd_to_decimal": {"tf": 1.4142135623730951}, "mathgenerator.computer_science.binary_to_decimal": {"tf": 1}, "mathgenerator.computer_science.decimal_to_bcd": {"tf": 1.7320508075688772}, "mathgenerator.computer_science.decimal_to_binary": {"tf": 1}, "mathgenerator.computer_science.decimal_to_hexadeci": {"tf": 1}, "mathgenerator.computer_science.decimal_to_octal": {"tf": 1.4142135623730951}, "mathgenerator.misc.decimal_to_roman_numerals": {"tf": 1}}, "df": 9}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.calculus.definite_integral": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.geometry.degree_to_rad": {"tf": 1.4142135623730951}, "mathgenerator.geometry.radian_to_deg": {"tf": 1}, "mathgenerator.geometry.sector_area": {"tf": 1}, "mathgenerator.misc.celsius_to_fahrenheit": {"tf": 1.4142135623730951}}, "df": 4}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.statistics.data_summary": {"tf": 1.7320508075688772}}, "df": 1}}}}}}}}, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator": {"tf": 1.7320508075688772}}, "df": 1}}}}}}}}}}}, "n": {"docs": {"mathgenerator": {"tf": 1.4142135623730951}}, "df": 1}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.algebra.compound_interest": {"tf": 1}, "mathgenerator.algebra.simple_interest": {"tf": 1}}, "df": 2}}}}}, "t": {"docs": {"mathgenerator.algebra.vector_dot": {"tf": 1}}, "df": 1}, "e": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.geometry.valid_triangle": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.algebra.distance_two_points": {"tf": 1.4142135623730951}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.misc.binomial_distribution": {"tf": 1}}, "df": 1}}}}}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.statistics.conditional_probability": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.basic_math.absolute_difference": {"tf": 1}, "mathgenerator.basic_math.percentage_difference": {"tf": 1.4142135623730951}, "mathgenerator.misc.set_operation": {"tf": 1.7320508075688772}}, "df": 3}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.calculus.power_rule_differentiation": {"tf": 1}, "mathgenerator.calculus.trig_differentiation": {"tf": 1}}, "df": 2}}}, "e": {"docs": {"mathgenerator.calculus.power_rule_differentiation": {"tf": 1}}, "df": 1}}}}}}}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.basic_math.divide_fractions": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.basic_math.division": {"tf": 1}, "mathgenerator.computer_science.modulo_division": {"tf": 1}}, "df": 2}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.basic_math.greatest_common_divisor": {"tf": 1}}, "df": 1}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.statistics.dice_sum_probability": {"tf": 1.4142135623730951}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"mathgenerator": {"tf": 1}, "mathgenerator.statistics.data_summary": {"tf": 1}}, "df": 2}}}}, "i": {"docs": {"mathgenerator.misc.complex_to_polar": {"tf": 1}}, "df": 1, "n": {"docs": {"mathgenerator": {"tf": 2.23606797749979}, "mathgenerator.algebra.factoring": {"tf": 1}, "mathgenerator.algebra.system_of_equations": {"tf": 1}, "mathgenerator.computer_science.decimal_to_octal": {"tf": 1}, "mathgenerator.geometry.degree_to_rad": {"tf": 1}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}, "mathgenerator.misc.decimal_to_roman_numerals": {"tf": 1}, "mathgenerator.misc.surds_comparison": {"tf": 1}}, "df": 8, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator": {"tf": 2}}, "df": 1, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}}}}}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.misc.binomial_distribution": {"tf": 1}}, "df": 1}}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.algebra.compound_interest": {"tf": 1.7320508075688772}, "mathgenerator.algebra.simple_interest": {"tf": 1.7320508075688772}}, "df": 2}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.algebra.intersection_of_two_lines": {"tf": 1.4142135623730951}, "mathgenerator.misc.set_operation": {"tf": 1.7320508075688772}}, "df": 2}}}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.geometry.sum_of_polygon_angles": {"tf": 1}}, "df": 1}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator.statistics.confidence_interval": {"tf": 1.4142135623730951}}, "df": 1}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1}, "mathgenerator.computer_science.bcd_to_decimal": {"tf": 1.4142135623730951}}, "df": 2}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator.calculus.definite_integral": {"tf": 1.4142135623730951}}, "df": 1}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.calculus.power_rule_integration": {"tf": 1}}, "df": 1}}}, "e": {"docs": {"mathgenerator.calculus.power_rule_integration": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {"mathgenerator.algebra.factoring": {"tf": 1}}, "df": 1}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.algebra.invert_matrix": {"tf": 1}}, "df": 1}, "s": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.algebra.invert_matrix": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {"mathgenerator": {"tf": 2}, "mathgenerator.algebra.compound_interest": {"tf": 1}, "mathgenerator.algebra.invert_matrix": {"tf": 1}, "mathgenerator.algebra.simple_interest": {"tf": 1}, "mathgenerator.basic_math.cube_root": {"tf": 1}, "mathgenerator.basic_math.is_composite": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.is_prime": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.percentage": {"tf": 1}, "mathgenerator.basic_math.percentage_difference": {"tf": 1}, "mathgenerator.computer_science.decimal_to_octal": {"tf": 1}, "mathgenerator.computer_science.fibonacci_series": {"tf": 1}, "mathgenerator.computer_science.nth_fibonacci_number": {"tf": 1}, "mathgenerator.geometry.angle_btw_vectors": {"tf": 1}, "mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1}, "mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.degree_to_rad": {"tf": 1}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}, "mathgenerator.geometry.perimeter_of_polygons": {"tf": 1}, "mathgenerator.geometry.pythagorean_theorem": {"tf": 1}, "mathgenerator.geometry.sector_area": {"tf": 1}, "mathgenerator.geometry.sum_of_polygon_angles": {"tf": 1}, "mathgenerator.geometry.surface_area_cone": {"tf": 1}, "mathgenerator.geometry.surface_area_cube": {"tf": 1}, "mathgenerator.geometry.surface_area_cuboid": {"tf": 1}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.surface_area_pyramid": {"tf": 1}, "mathgenerator.geometry.surface_area_sphere": {"tf": 1}, "mathgenerator.geometry.volume_cone": {"tf": 1}, "mathgenerator.geometry.volume_cube": {"tf": 1}, "mathgenerator.geometry.volume_cuboid": {"tf": 1}, "mathgenerator.geometry.volume_cylinder": {"tf": 1}, "mathgenerator.geometry.volume_cone_frustum": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_pyramid": {"tf": 1}, "mathgenerator.misc.binomial_distribution": {"tf": 1}, "mathgenerator.misc.decimal_to_roman_numerals": {"tf": 1}, "mathgenerator.misc.euclidian_norm": {"tf": 1}, "mathgenerator.misc.geometric_progression": {"tf": 2}, "mathgenerator.misc.is_leap_year": {"tf": 1.7320508075688772}, "mathgenerator.misc.profit_loss_percent": {"tf": 1}, "mathgenerator.misc.set_operation": {"tf": 2.23606797749979}, "mathgenerator.misc.signum_function": {"tf": 1}, "mathgenerator.statistics.conditional_probability": {"tf": 1.4142135623730951}, "mathgenerator.statistics.confidence_interval": {"tf": 1}, "mathgenerator.statistics.data_summary": {"tf": 1.7320508075688772}, "mathgenerator.statistics.mean_median": {"tf": 1.4142135623730951}, "mathgenerator.statistics.permutation": {"tf": 1}}, "df": 46}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator": {"tf": 2}}, "df": 1}}}}}, "f": {"docs": {"mathgenerator": {"tf": 1.7320508075688772}, "mathgenerator.statistics.dice_sum_probability": {"tf": 1}}, "df": 2}, "d": {"docs": {"mathgenerator": {"tf": 2}}, "df": 1}, "o": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "t": {"docs": {"mathgenerator.algebra.factoring": {"tf": 1.4142135623730951}}, "df": 1}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator": {"tf": 1.4142135623730951}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}, "e": {"docs": {"mathgenerator": {"tf": 1.7320508075688772}}, "df": 1}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}}}}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.misc.set_operation": {"tf": 1.7320508075688772}}, "df": 1}}}}, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {"mathgenerator.misc.geometric_progression": {"tf": 1.4142135623730951}}, "df": 1}}}}, "b": {"docs": {"mathgenerator.misc.set_operation": {"tf": 2.23606797749979}}, "df": 1, "e": {"docs": {"mathgenerator": {"tf": 1.7320508075688772}}, "df": 1, "t": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.algebra.distance_two_points": {"tf": 1.4142135623730951}, "mathgenerator.basic_math.absolute_difference": {"tf": 1}, "mathgenerator.basic_math.compare_fractions": {"tf": 1}, "mathgenerator.basic_math.percentage_difference": {"tf": 1.4142135623730951}, "mathgenerator.geometry.angle_btw_vectors": {"tf": 1.4142135623730951}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}}, "df": 6}}}}}, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "{": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {"mathgenerator.algebra.int_matrix_22_determinant": {"tf": 1}, "mathgenerator.algebra.invert_matrix": {"tf": 1.4142135623730951}, "mathgenerator.algebra.matrix_multiplication": {"tf": 1.7320508075688772}, "mathgenerator.algebra.multiply_int_to_22_matrix": {"tf": 1.4142135623730951}}, "df": 4}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.misc.binomial_distribution": {"tf": 1}}, "df": 1}}}}}}, "y": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"mathgenerator.algebra.basic_algebra": {"tf": 1}}, "df": 1}}, "e": {"docs": {"mathgenerator.geometry.surface_area_pyramid": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_pyramid": {"tf": 1.4142135623730951}, "mathgenerator.misc.base_conversion": {"tf": 1.7320508075688772}, "mathgenerator.misc.quotient_of_power_same_base": {"tf": 1}}, "df": 4}}, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"mathgenerator.misc.binomial_distribution": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator.algebra.expanding": {"tf": 1}, "mathgenerator.misc.binomial_distribution": {"tf": 1}}, "df": 2}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator.computer_science.bcd_to_decimal": {"tf": 1.4142135623730951}, "mathgenerator.computer_science.binary_2s_complement": {"tf": 1}, "mathgenerator.computer_science.binary_complement_1s": {"tf": 1}, "mathgenerator.computer_science.binary_to_decimal": {"tf": 1}, "mathgenerator.computer_science.binary_to_hex": {"tf": 1}, "mathgenerator.computer_science.decimal_to_bcd": {"tf": 1}, "mathgenerator.computer_science.decimal_to_binary": {"tf": 1.4142135623730951}}, "df": 7}}}}}, "x": {"docs": {"mathgenerator.algebra.factoring": {"tf": 1}}, "df": 1}, "c": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.computer_science.decimal_to_bcd": {"tf": 1}}, "df": 1}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.misc.surds_comparison": {"tf": 1}}, "df": 1}}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.statistics.data_summary": {"tf": 1.7320508075688772}}, "df": 1}}}}}}, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator": {"tf": 1}, "mathgenerator.basic_math.percentage_error": {"tf": 1.4142135623730951}, "mathgenerator.misc.geometric_progression": {"tf": 1.7320508075688772}}, "df": 3, "s": {"docs": {"mathgenerator.geometry.basic_trigonometry": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator.geometry.valid_triangle": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.misc.euclidian_norm": {"tf": 1.4142135623730951}}, "df": 1, "s": {"docs": {"mathgenerator.algebra.vector_cross": {"tf": 1}, "mathgenerator.algebra.vector_dot": {"tf": 1}, "mathgenerator.geometry.angle_btw_vectors": {"tf": 1.4142135623730951}}, "df": 3}}}}}}, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.geometry.volume_cone": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_cube": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_cuboid": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_cylinder": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_cone_frustum": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_hemisphere": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_pyramid": {"tf": 1.4142135623730951}, "mathgenerator.geometry.volume_sphere": {"tf": 1.4142135623730951}}, "df": 8}}}}}}, "y": {"docs": {"mathgenerator.algebra.intersection_of_two_lines": {"tf": 1.4142135623730951}, "mathgenerator.algebra.linear_equations": {"tf": 1.4142135623730951}, "mathgenerator.algebra.line_equation_from_2_points": {"tf": 1}, "mathgenerator.algebra.system_of_equations": {"tf": 1.4142135623730951}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}}, "df": 5, "o": {"docs": {}, "df": 0, "u": {"docs": {"mathgenerator": {"tf": 2.6457513110645907}}, "df": 1, "r": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.misc.is_leap_year": {"tf": 1.7320508075688772}}, "df": 1, "s": {"docs": {"mathgenerator.algebra.compound_interest": {"tf": 1}, "mathgenerator.algebra.simple_interest": {"tf": 1}}, "df": 2}}}, "s": {"docs": {"mathgenerator.basic_math.is_composite": {"tf": 1}, "mathgenerator.basic_math.is_prime": {"tf": 1}}, "df": 2}}}, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"mathgenerator": {"tf": 1.4142135623730951}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator": {"tf": 2.449489742783178}}, "df": 1, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator": {"tf": 1.7320508075688772}}, "df": 1}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"mathgenerator": {"tf": 2.23606797749979}, "mathgenerator.geometry.angle_regular_polygon": {"tf": 1}, "mathgenerator.geometry.area_of_circle": {"tf": 1}, "mathgenerator.geometry.area_of_circle_given_center_and_point": {"tf": 1}, "mathgenerator.geometry.area_of_triangle": {"tf": 1}, "mathgenerator.geometry.circumference": {"tf": 1}, "mathgenerator.geometry.fourth_angle_of_quadrilateral": {"tf": 1}, "mathgenerator.geometry.perimeter_of_polygons": {"tf": 1}, "mathgenerator.geometry.sector_area": {"tf": 1}, "mathgenerator.geometry.sum_of_polygon_angles": {"tf": 1}, "mathgenerator.geometry.surface_area_cone": {"tf": 1}, "mathgenerator.geometry.surface_area_cube": {"tf": 1}, "mathgenerator.geometry.surface_area_cuboid": {"tf": 1}, "mathgenerator.geometry.surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.surface_area_pyramid": {"tf": 1}, "mathgenerator.geometry.surface_area_sphere": {"tf": 1}, "mathgenerator.geometry.third_angle_of_triangle": {"tf": 1}, "mathgenerator.geometry.valid_triangle": {"tf": 1}, "mathgenerator.geometry.volume_cone": {"tf": 1}, "mathgenerator.geometry.volume_cube": {"tf": 1}, "mathgenerator.geometry.volume_cuboid": {"tf": 1}, "mathgenerator.geometry.volume_cylinder": {"tf": 1}, "mathgenerator.geometry.volume_cone_frustum": {"tf": 1}, "mathgenerator.geometry.volume_hemisphere": {"tf": 1}, "mathgenerator.geometry.volume_pyramid": {"tf": 1}, "mathgenerator.geometry.volume_sphere": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_base": {"tf": 1}, "mathgenerator.misc.quotient_of_power_same_power": {"tf": 1}, "mathgenerator.statistics.confidence_interval": {"tf": 1}}, "df": 29, "i": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.calculus.definite_integral": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator": {"tf": 1.4142135623730951}, "mathgenerator.misc.binomial_distribution": {"tf": 1}}, "df": 2}}, "d": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"mathgenerator.geometry.surface_area_pyramid": {"tf": 1}, "mathgenerator.geometry.volume_pyramid": {"tf": 1}}, "df": 2}}}}, "g": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}, "s": {"docs": {"mathgenerator": {"tf": 2.23606797749979}}, "df": 1}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1, "s": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.algebra.quadratic_equation": {"tf": 1}, "mathgenerator.basic_math.cube_root": {"tf": 1}, "mathgenerator.basic_math.percentage": {"tf": 1}, "mathgenerator.basic_math.percentage_difference": {"tf": 1}, "mathgenerator.computer_science.nth_fibonacci_number": {"tf": 1}, "mathgenerator.geometry.curved_surface_area_cylinder": {"tf": 1}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1}, "mathgenerator.geometry.pythagorean_theorem": {"tf": 1}, "mathgenerator.geometry.sector_area": {"tf": 1}, "mathgenerator.geometry.sum_of_polygon_angles": {"tf": 1}, "mathgenerator.misc.binomial_distribution": {"tf": 1}, "mathgenerator.statistics.conditional_probability": {"tf": 1}}, "df": 12}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"mathgenerator.basic_math.compare_fractions": {"tf": 1}, "mathgenerator.statistics.conditional_probability": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {"mathgenerator.basic_math.percentage_error": {"tf": 1}, "mathgenerator.misc.profit_loss_percent": {"tf": 1}}, "df": 2}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.statistics.conditional_probability": {"tf": 1}}, "df": 1}}}}}}}, "l": {"2": {"docs": {"mathgenerator.misc.euclidian_norm": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator": {"tf": 1}, "mathgenerator.algebra.combine_like_terms": {"tf": 1}}, "df": 2}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {"mathgenerator.algebra.line_equation_from_2_points": {"tf": 1.4142135623730951}, "mathgenerator.geometry.equation_of_line_from_two_points": {"tf": 1.4142135623730951}}, "df": 2, "s": {"docs": {"mathgenerator.algebra.intersection_of_two_lines": {"tf": 1.4142135623730951}}, "df": 1}, "a": {"docs": {}, "df": 0, "r": {"docs": {"mathgenerator.algebra.linear_equations": {"tf": 1}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.calculus.definite_integral": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"mathgenerator": {"tf": 2}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "g": {"docs": {"mathgenerator.algebra.log": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "m": {"docs": {"mathgenerator.algebra.log": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.misc.profit_loss_percent": {"tf": 1.4142135623730951}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"mathgenerator.geometry.arc_length": {"tf": 1.7320508075688772}, "mathgenerator.geometry.surface_area_pyramid": {"tf": 1}, "mathgenerator.geometry.volume_cube": {"tf": 1}, "mathgenerator.geometry.volume_pyramid": {"tf": 1}}, "df": 4, "s": {"docs": {"mathgenerator.geometry.area_of_triangle": {"tf": 1}, "mathgenerator.geometry.perimeter_of_polygons": {"tf": 1}, "mathgenerator.geometry.pythagorean_theorem": {"tf": 1}, "mathgenerator.geometry.surface_area_cuboid": {"tf": 1}}, "df": 4}}}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {"mathgenerator.misc.is_leap_year": {"tf": 1.7320508075688772}}, "df": 1}, "s": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.misc.lcm": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "m": {"docs": {"mathgenerator.misc.lcm": {"tf": 1.4142135623730951}}, "df": 1}}}, "k": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {"mathgenerator": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "j": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator": {"tf": 1}}, "df": 1}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"mathgenerator.algebra.complex_quadratic": {"tf": 1.4142135623730951}, "mathgenerator.algebra.factoring": {"tf": 1.4142135623730951}, "mathgenerator.algebra.quadratic_equation": {"tf": 1.4142135623730951}, "mathgenerator.calculus.definite_integral": {"tf": 1}}, "df": 4}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"mathgenerator.geometry.fourth_angle_of_quadrilateral": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"mathgenerator.misc.quotient_of_power_same_base": {"tf": 1.4142135623730951}, "mathgenerator.misc.quotient_of_power_same_power": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}}, "x": {"1": {"docs": {"mathgenerator.algebra.factoring": {"tf": 1}}, "df": 1}, "2": {"docs": {"mathgenerator.algebra.factoring": {"tf": 1}}, "df": 1}, "docs": {"mathgenerator.algebra.expanding": {"tf": 1}, "mathgenerator.algebra.factoring": {"tf": 1.7320508075688772}, "mathgenerator.algebra.linear_equations": {"tf": 1.4142135623730951}, "mathgenerator.algebra.system_of_equations": {"tf": 1.7320508075688772}, "mathgenerator.calculus.stationary_points": {"tf": 1.4142135623730951}}, "df": 5, "^": {"2": {"docs": {"mathgenerator.algebra.complex_quadratic": {"tf": 1}, "mathgenerator.algebra.factoring": {"tf": 1}, "mathgenerator.calculus.stationary_points": {"tf": 1}}, "df": 3, "+": {"1": {"8": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "+": {"1": {"8": {"docs": {"mathgenerator.algebra.expanding": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}, "docs": {}, "df": 0}, "2": {"docs": {}, "df": 0, "x": {"docs": {"mathgenerator.algebra.factoring": {"tf": 1}}, "df": 1}}, "docs": {}, "df": 0}}, "3": {"docs": {"mathgenerator.calculus.stationary_points": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "+": {"6": {"docs": {"mathgenerator.algebra.factoring": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "i": {"docs": {"mathgenerator.misc.decimal_to_roman_numerals": {"tf": 1}}, "df": 1}}}}, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {"mathgenerator.algebra.quadratic_equation": {"tf": 1}}, "df": 1}}}}}}}}, "pipeline": ["trimmer"], "_isPrebuiltIndex": true}; // mirrored in build-search-index.js (part 1) // Also split on html tags. this is a cheap heuristic, but good enough. diff --git a/mathgenerator/_gen_list.py b/mathgenerator/_gen_list.py index 15dd972..6f0f36b 100644 --- a/mathgenerator/_gen_list.py +++ b/mathgenerator/_gen_list.py @@ -126,4 +126,5 @@ gen_list = [ ("is_composite", "basic_math"), ("complementary_and_supplementary_angle", "geometry"), ("simplify_square_root", "basic_math"), + ("line_equation_from_2_points", "algebra"), ] diff --git a/mathgenerator/algebra.py b/mathgenerator/algebra.py index 3edd2ff..0133d0a 100644 --- a/mathgenerator/algebra.py +++ b/mathgenerator/algebra.py @@ -487,6 +487,48 @@ def linear_equations(n=2, var_range=20, coeff_range=20): return f'Given the equations ${problem}$, solve for $x$ and $y$', f'${solution}$' +def line_equation_from_2_points(max_val=20): + r"""Equation of Line from Two Points + + | Ex. Problem | Ex. Solution | + | --- | --- | + | Find the equation of the line passing through the points $(-19,-8)$ and $(-2,0)$. | $y=\frac{8}{17}x+\frac{16}{17}$ | + """ + x1 = random.randint(-max_val, max_val) + x2 = random.randint(-max_val, max_val) + if x1 == x2: + return line_equation_from_2_points(max_val=max_val) + y1 = random.randint(-max_val, max_val) + y2 = random.randint(-max_val, max_val) + m1 = (y2 - y1) // math.gcd(y2 - y1, x2 - x1) + m2 = (x2 - x1) // math.gcd(y2 - y1, x2 - x1) + c1 = (y1 * (x2 - x1) - (y2 - y1) * x1) // math.gcd(y1 * (x2 - x1) - (y2 - y1) * x1, (x2 - x1)) + c2 = (x2 - x1) // math.gcd(y1 * (x2 - x1) - (y2 - y1) * x1, (x2 - x1)) + c = rf"{'+' if c1 >= 0 else '-'}\frac{{{abs(c1)}}}{{{c2}}}" if c1 != 0 else "" + if c2 < 0: + c2 = -c2 + c1 = -c1 + c = rf"{'+' if c1 >= 0 else '-'}\frac{{{abs(c1)}}}{{{c2}}}" + if c2 == 1: + c = f"{c1:+}" + + problem = f'Find the equation of the line passing through the points $({x1},{y1})$ and $({x2},{y2})$.' + + if m1 == 0: + return problem, f"$y={c}$" + if m2 < 0: + m1 = -m1 + m2 = -m2 + if m2 == 1: + if m1 == 1: + return problem, f"$y=x{c}$" + if m1 == -1: + return problem, f"$y=-x{c}$" + return problem, f"y={m1}x{c}" + + return problem, rf"$y=\frac{{{m1}}}{{{m2}}}x{c}$" + + def log(max_base=3, max_val=8): r"""Logarithm\n \n\n\nEx. Problem \nEx. Solution \n\n \n\nNumber of Permutations from $18$ objects picked $5$ at a time is: \n$1028160$ \n