All files / src/locales/int scientific.js

100% Statements 2/2
100% Branches 0/0
100% Functions 0/0
100% Lines 2/2
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 5016x                                     16x                                                            
export const MATH_FORMULAS = [
  "A = (ab)/2",
  "A = a2",
  "A = ab",
  "A = (h(a + b))/2",
  "V = (Ah)/3",
  "xn*xm = xn + m",
  "(xn)/(xm) = x^n - m",
  "(x/y)^n = (x^n)/(y^n)",
  "x^n*y^n = (xy)^n",
  "ax2 + bx + c = 0.",
  "(a/b)/(c/d) = (a/b) * (d/c)",
  "π = pi = 3.1415",
  "A = πr^2",
  "P = 4l",
  "V = πr^2*h",
  "V - E + F = 2"
];
 
export const SI_PREFIXES = {
  "negative": [
    "deci",
    "centi",
    "milli",
    "micro",
    "nano",
    "pico",
    "femto",
    "atto",
    "zepto",
    "yocto"
  ],
  "positive": [
    "yotta",
    "zetta",
    "exa",
    "peta",
    "tera",
    "giga",
    "mega",
    "kilo",
    "hecto",
    "deca"
  ],
  "_sym_": {
    "negative": ['d', 'c', 'm', 'μ', 'n', 'p', 'f', 'a', 'z', 'y'],
    "positive": ['Y', 'Z', 'E', 'P', 'T', 'G', 'M', 'k', 'h', 'da']
  }
}