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;u0&&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;e1;){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();omathgenerator\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\n

To try out generators, go to https://mathgenerator-demo.netlify.app

\n\n

See CONTRIBUTING.md for information about how to contribute.

\n\n

Table of Contents

\n\n\n\n

Installation

\n\n

The project can be install via pip

\n\n
\n
pip install mathgenerator\n
\n
\n\n

Usage

\n\n

Here is an example of how you would generate an addition problem:

\n\n
\n
import 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)\n
\n
\n\n

You may prefer to use import mathgenerator as mg and run functions like mg.addition() so that you don't have to type as much.\n\nProblem/solution pairs are generated with either:

\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 the id parameter
  • \n
\n\n

\nYou can also use getGenList() to return a list of all generators included in the library in the format:\n\n\n

[funcname, subjectname]\n
\n\n

Documentation

\n\n

Documentation 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 \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
$1x + 5 = 5$$0$
\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": "

Combine Like Terms

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
$6x^{9} + 3x^{2} + 5x^{19} + 3x^{17}$$3x^{2} + 6x^{9} + 3x^{17} + 5x^{19}$
\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": "

Complex Quadratic Equation

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
Find the roots of given Quadratic Equation $x^2 + 8x + 8 = 0$$((-1.172, -6.828)) = (\\frac{-8 + \\sqrt{32}}{21}, (\\frac{-8 - \\sqrt{32}}{21})$
\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": "

Compound Interest

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
Compound interest for a principle amount of $2679$ dollars, $9$% rate of interest and for a time period of $3$ years is $=$$3469.38$
\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": "

Distance between 2 points

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
Find the distance between $(-19, -6)$ and $(15, -16)$$\\sqrt{1256}$
\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": "

Expanding Factored Binomial

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
$(x-6)(-3x-3)$$x^2+18x+18$
\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": "

Factoring 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 \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
$x^2+2x-24$$(x-4)(x+6)$
\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": "

Determinant to 2x2 Matrix

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
$\\det \\begin{bmatrix} 88 & 40 \\\\ 9 & 91 \\end{bmatrix}= $$7648$
\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": "

Intersection of two lines

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
Find the point of intersection of the two lines: $y = \\frac{-2}{6}x + 3$ and $y = \\frac{3}{6}x - 8$$(\\frac{66}{5}, \\frac{-7}{5})$
\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": "

Invert Matrix

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
Inverse of Matrix $\\begin{bmatrix} 4 & 1 & 4 \\\\ 5 & 1 & 5 \\\\ 12 & 3 & 13 \\end{bmatrix}$ is:$\\begin{bmatrix} 2 & 1 & -1 \\\\ 5 & -4 & 0 \\\\ -3 & 0 & 1 \\end{bmatrix}$
\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": "

Linear Equations

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
Given the equations $10x + -20y = 310$ and $-16x + -17y = 141$, solve for $x$ and $y$$x = 5$, $y = -13$
\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": "

Logarithm

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
$log_{3}(243)=$$5$
\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": "

Multiply Two Matrices

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
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}$
\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": "

Midpoint of two points

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
The midpoint of $(-8,10)$ and $(18,0) = $$(5.0,5.0)$
\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": "

Multiplication of 2 complex numbers

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
$(14+18j) * (14+15j) = $$(-74+462j)$
\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": "

Multiply Integer to 2x2 Matrix

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
$5 * \\begin{bmatrix} 1 & 0 \\\\ 2 & 9 \\end{bmatrix} =$$\\begin{bmatrix} 5 & 0 \\\\ 10 & 45 \\end{bmatrix}$
\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": "

Quadratic Equation

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
What are the zeros of the quadratic equation $22x^2+137x+25=0$${-0.19, -6.04}$
\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": "

Simple Interest

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
Simple interest for a principle amount of $7217$ dollars, $3$% rate of interest and for a time period of $10$ years is $=$$2165.1$
\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": "

Solve a System of Equations in R^2

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
Given $-x + 5y = -28$ and $9x + 2y = 64$, solve for $x$ and $y$.$x = 8$, $y = -4$
\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": "

Cross product of 2 vectors

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
$[-1, -4, 10] \\times [-11, 1, -16] = $$[54, -126, -45]$
\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": "

Dot product of 2 vectors

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
$[12, -9, -8]\\cdot[-9, 8, 1]=$$-188$
\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": "

Absolute difference between two numbers

\n\n\n\n\n \n \n\n\n\n\n \n \n \n \n\n\n
Ex. ProblemEx. Solution
$22-34=$$12$
\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": "

Addition of two numbers

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
$22+34=$$56$
\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": "

Compare Fractions

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
Which symbol represents the comparison between $\\frac{1}{2}$ and $\\frac{3}{4}$?$>$
\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": "

Cube Root

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
What is the cube root of: $\\sqrt[3]{125}=$ to 2 decimal places?$5$
\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": "

Divide Fractions

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
$\\frac{7}{9}\\div\\frac{4}{1}=$$\\frac{7}{36}$
\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": "

Division

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
$216\\div24=$$9$
\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": "

Exponentiation

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
$9^{5}=$$8$
\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": "

Factorial

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
$4! =$$24$
\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": "

Fraction Multiplication

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
$\\frac{3}{10}\\cdot\\frac{6}{7}=$$\\frac{9}{35}$
\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": "

Fraction to Decimal

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
$83\\div80=$$1.04$
\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": "

Greatest Common Divisor of N Numbers ( GCD / HCF )

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
$GCD(488075608, 75348096)=$$8$
\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": "

Is Composite

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
Is $171$ composite?Yes
\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": "

Is Prime

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
Is $37$ prime?Yes
\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": "

Multiplication

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
$10\\cdot9=$$90$
\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": "

Percentage of a number

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
What is $45$% of $39$?$17.55$
\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": "

Percentage difference between two numbers

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
What is the percentage difference between $2$ and $10$?$133.33$
\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": "

Percentage error

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
Find the percentage error when observed value equals $32$ and exact value equals $81$.$60.49$%
\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": "

Power of Powers

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
Simplify $18^{10^{8}}$$18^{80}$
\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": "

Square

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
$17^2=$$289$
\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": "

Square Root

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
$\\sqrt{64}=$$8$
\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": "

Simplify Square Root

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
$\\sqrt{63}$$3\\sqrt{7}$
\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": "

Subtraction of two numbers

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
$54-22=$$32$
\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": "

Definite Integral of Quadratic Equation

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
The definite integral within limits $0$ to $1$ of the equation $28x^2 + 32x + 66 = $$91.33$
\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": "

Power Rule Differentiation

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
Differentiate $1x^{5} + 4x^{7} + 4x^{4}$$5x^{4} + 28x^{6} + 16x^{3}$
\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": "

Power Rule Integration

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
Integrate $9x^{6} + 2x^{6} + 4x^{3}$$\\frac{9}{6}x^{7} + \\frac{2}{6}x^{7} + \\frac{4}{3}x^{4} + C$
\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": "

Stationary Points

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
$f(x)=6x^3 + 6x^2 + x + 8$${- \\frac{1}{3} - \\frac{\\sqrt{2}}{6}, - \\frac{1}{3} + \\frac{\\sqrt{2}}{6}}$
\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": "

Trigonometric Differentiation

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
$\\frac{d}{dx}(\\csc)=$$-\\csc \\cdot \\cot$
\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": "

Binary Coded Decimal to Integer

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
Integer of Binary Coded Decimal $4 =$$17801$
\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": "

Binary 2's Complement

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
2's complement of $1011 = $$101$
\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": "

Binary Complement 1s

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
$1111001 = $$0000110$
\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": "

Binary to Decimal

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
$000110$$6$
\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": "

Binary to Hexidecimal

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
$010101$$0x15$
\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": "

Decimal to Binary Coded Decimal

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
BCD of Decimal Number $6575 = $$191015$
\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": "

Decimal to Binary

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
Binary of $4 = $$100$
\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": "

Decimal to Hexadecimal

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
Hexadecimal of $410 = $$0x19a$
\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": "

Decimal to Octal

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
The decimal number $3698$ in octal is:$0o7162$
\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": "

Fibonacci Series

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
The Fibonacci Series of the first ${n}$ numbers is ?$0, 1, 1, 2, 3, 5, 8, 13, 21$
\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": "

Modulo Division

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
$43$ % $33 = $$10$
\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": "

nth Fibonacci number

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
What is the 85th Fibonacci number?$259695496911123328$
\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": "

Angle between 2 vectors

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
angle 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:$0.81$ radians
\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": "

Angle of a Regular Polygon

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
Find the angle of a regular polygon with $8$ sides$135.0$
\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": "

Arc length of Angle

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
Given radius, $44$ and angle, $184$. Find the arc length of the angle.Arc length of the angle $= 141.30186$
\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": "

Area of Circle

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
Area of circle with radius $29=$$2642.08$
\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": "

Area of Circle given center and a point on circle

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
Area of circle with center $(7,-6)$ and passing through $(1.0, -6.0)$ is$113.1$
\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": "

Area of Triangle

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
Area of triangle with side lengths: $8, 1, 8 = $$3.99$
\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": "

Trigonometric Values

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
$\\sin(30) = $$\\frac{1}{2}$
\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": "

Circumference of Circle

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
Circumference of circle with radius $56 = $$351.86$
\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": "

Complementary and Supplementary Angle

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
The complementary angle of $15 =$$75$
\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": "

Curved surface area of a cylinder

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
What is the curved surface area of a cylinder of radius, $44$ and height, $92$?$25434.33$
\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": "

Degrees to Radians

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
Angle $113$ degrees in radians is:$1.97$
\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": "

Equation of line from two points

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
What is the equation of the line between points $(13,9)$ and $(6,-19)$ in slope-intercept form?$y = 4x -43$
\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": "

Fourth Angle of Quadrilateral

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
Fourth angle of quadrilateral with angles $162 , 43, 78 =$$77$
\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": "

Perimeter of Polygons

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
The perimeter of a $4$ sided polygon with lengths of $30, 105, 78, 106$cm is:$319$
\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": "

Pythagorean Theorem

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
What is the hypotenuse of a right triangle given the other two sides have lengths $9$ and $10$?$13.45$
\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": "

Radians 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 \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
What is the area of a sector with radius $42$ and angle $83$ degrees?$1277.69$
\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": "

Sum of Angles of Polygon

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
What is the sum of interior angles of a polygon with $8$ sides?$1080$
\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": "

Surface area of a cone

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
Surface area of cone with height $= 26m$ and radius $= 6m$ is$616 m^2$
\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": "

Surface area of a cube

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
Surface area of cube with side $= 6m$ is$216 m^2$
\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": "

Surface area of a cuboid

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
Surface area of cuboid with sides of lengths: $11m, 20m, 8m$ is$936 m^2$
\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": "

Surface area of a cylinder

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
Surface area of cylinder with height $= 26m$ and radius $= 15m$ is$3864 m^2$
\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": "

Surface area of a pyramid

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
Surface area of pyramid with base length $= 30m$, base width $= 40m$, and height $= 25m$ is$2400 m^2$
\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": "

Surface area of a sphere

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
Surface area of a sphere with radius $= 8m$ is$804.25 m^2$
\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": "

Third Angle of Triangle

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
Third angle of triangle with angles $10$ and $22 =$$148$
\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": "

Valid Triangle

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
Does triangel with sides $10, 31$ and $14$ exist?No
\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": "

Volume of a cone

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
Volume of cone with height $= 44m$ and radius $= 11m$ is$5575 m^3$
\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": "

Volume 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 \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
Volume of cuboid with sides = $17m, 11m, 13m$ is$2431 m^3$
\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": "

Volume of a cylinder

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
Volume of cylinder with height $= 3m$ and radius $= 10m$ is$942 m^3$
\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": "

Volume of the frustum of a cone

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
Volume of frustum with height $= 30m$ and $r1 = 20m$ is and $r2 = 8m$ is$19603.54 m^3$
\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": "

Volume of a hemisphere

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
Volume of hemisphere with radius $32m =$$68629.14 m^3$
\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": "

Volume of a pyramid

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
Volume of pyramid with base length $= 7 m$, base width $= 18 m$ and height $= 42 m$ is$1764.0 m^3$
\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": "

Volume of a sphere

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
Volume of sphere with radius $30 m = $$113097.36 m^3$
\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": "

Arithmetic Progression Sum

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
Find the sum of first $44$ terms of the AP series: $49, 145, 241 ... $$92972.0$
\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": "

Arithmetic Progression Term

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
Find term number $12$ of the AP series: $-54, 24, 102 ... $$804$
\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": "

Base Conversion

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
Convert $45204$ from base $10$ to base $4$$23002110$
\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": "

Binomial distribution

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
A 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?$3.17$
\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": "

Celsius to Fahrenheit

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
Convert $-46$ degrees Celsius to degrees Fahrenheit$-50.8$
\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": "

Common Factors

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
Common Factors of $100$ and $44 = $$[1, 2, 4]$
\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": "

Complex to polar form

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
$19.42(-19.0\\theta + i-4.0\\theta)$$-2.93$
\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": "

Decimal to Roman Numerals

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
The number $92$ in roman numerals is:$XCII$
\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": "

Euclidian norm or L2 norm of a vector

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
Euclidian norm or L2 norm of the vector $[659.9225071540442, 243.40887829281564, 128.79950053874424, 263.19226900031344]$ is:$761.97$
\n", "signature": "(maxEltAmt=20):", "funcdef": "def"}, "mathgenerator.misc.factors": {"fullname": "mathgenerator.misc.factors", "modulename": "mathgenerator.misc", "qualname": "factors", "kind": "function", "doc": "

Factors of a number

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
Factors of $176 = $$[1, 2, 4, 8, 11, 16, 22, 44, 88, 176]$
\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": "

Geometric Mean of N Numbers

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
Geometric mean of $3$ numbers $[72, 21, 87] = $$50.86$
\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": "

Geometric Progression

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
For the given GP $[11, 44, 176, 704, 2816, 11264]$. Find the value of a common ratio, 7th term value, sum upto 10th termThe value of a is $11$, common ratio is $4$ , 7th term is $45056$, sum upto 10th term is $3844775.0$
\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": "

Harmonic Mean of N Numbers

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
Harmonic mean of $4$ numbers $52, 56, 25, 57 = $$602.33$
\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": "

Is Leap Year or Not

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
Is $2000$ a leap year?$2000$ is a leap year
\n", "signature": "(minNumber=1900, max_number=2099):", "funcdef": "def"}, "mathgenerator.misc.lcm": {"fullname": "mathgenerator.misc.lcm", "modulename": "mathgenerator.misc", "qualname": "lcm", "kind": "function", "doc": "

LCM (Least Common Multiple)

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
LCM of $3$ and $18 = $$18$
\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": "

Convert minutes to hours and minutes

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
Convert $836$ minutes to hours & minutes$13$ hours and $56$ minutes
\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": "

Prime Factors

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
Find prime factors of $30$$2, 3, 5$
\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": "

Product of scientific notations

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
Product of scientific notations $5.11 \\times 10^{67}$ and $3.64 \\times 10^{-59} = $$1.86 \\times 10^{9}$
\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": "

Profit or Loss Percent

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
Loss percent when $CP = 751$ and $SP = 290$ is:$61.38$
\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": "

Quotient of Powers with Same Base

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
The Quotient of $5^{6}$ and $5^{8} = $5^{6-8} = 5^{-2}$$0.04$
\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": "

Quotient of Powers with Same Power

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
The quotient of $19^{8}$ and $10^{8} = (19/10)^8 = 1.9^{8}$$169.84$
\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": "

Union, Intersection, Difference of Two Sets

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
Given the two sets $a={1, 2, 4, 5}$, $b={8, 1, 2}. Find the Union, intersection, a-b, b-a, and symmetric differenceUnion 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}$.
\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": "

Signum Function

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
Signum of $-229$ is =$-1$
\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": "

Comparing Surds

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
Fill in the blanks $42^{\\frac{1}{2}}$ _ $45^{\\frac{1}{5}}$$>$
\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": "

Combinations of Objects

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
Find the number of combinations from $19$ objects picked $6$ at a time.$27132$
\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": "

Conditional Probability

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
Someone 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?$99.16$%
\n", "signature": "():", "funcdef": "def"}, "mathgenerator.statistics.confidence_interval": {"fullname": "mathgenerator.statistics.confidence_interval", "modulename": "mathgenerator.statistics", "qualname": "confidence_interval", "kind": "function", "doc": "

Confidence interval For sample S

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
The 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$(263.31, 229.33)$
\n", "signature": "():", "funcdef": "def"}, "mathgenerator.statistics.data_summary": {"fullname": "mathgenerator.statistics.data_summary", "modulename": "mathgenerator.statistics", "qualname": "data_summary", "kind": "function", "doc": "

Mean, Standard Deviation and Variance

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
Find the mean,standard deviation and variance for the data $9, 29, 46, 27, 46, 15, 10, 44, 19, 33, 38, 7, 34, 28, 8$The Mean is $26.2$, Standard Deviation is $186.29$, Variance is $13.65$
\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": "

Probability of a certain sum appearing on faces of dice

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
If $2$ dice are rolled at the same time, the probability of getting a sum of $5 =$$\frac{4}{36}$
\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": "

Mean and Median

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
Given the series of numbers $[4, 19, 21, 22, 43, 44, 60, 81, 87, 92]$. Find the arithmatic mean and median of the seriesArithmetic mean of the series is $47.3$ and arithmetic median of this series is $43.5$
\n", "signature": "(max_length=10):", "funcdef": "def"}, "mathgenerator.statistics.permutation": {"fullname": "mathgenerator.statistics.permutation", "modulename": "mathgenerator.statistics", "qualname": "permutation", "kind": "function", "doc": "

Permutations

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n
Ex. ProblemEx. Solution
Number of Permutations from $18$ objects picked $5$ at a time is:$1028160$
\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}; // mirrored in build-search-index.js (part 1) // Also split on html tags. this is a cheap heuristic, but good enough. elasticlunr.tokenizer.setSeperator(/[\s\-.;&_'"=,()]+|<[^>]*>/); let searchIndex; if (docs._isPrebuiltIndex) { console.info("using precompiled search index"); searchIndex = elasticlunr.Index.load(docs); } else { console.time("building search index"); // mirrored in build-search-index.js (part 2) searchIndex = elasticlunr(function () { this.pipeline.remove(elasticlunr.stemmer); this.pipeline.remove(elasticlunr.stopWordFilter); this.addField("qualname"); this.addField("fullname"); this.addField("annotation"); this.addField("default_value"); this.addField("signature"); this.addField("bases"); this.addField("doc"); this.setRef("fullname"); }); for (let doc of docs) { searchIndex.addDoc(doc); } console.timeEnd("building search index"); } return (term) => searchIndex.search(term, { fields: { qualname: {boost: 4}, fullname: {boost: 2}, annotation: {boost: 2}, default_value: {boost: 2}, signature: {boost: 2}, bases: {boost: 2}, doc: {boost: 1}, }, expand: true }); })();