📐 General Mathematics · 5 Formulas

General Mathematics

Percentage, percentage increase, average, ratio, percentage difference — universal formulas for every professional.

Contents — 5 Formulas

Percentage Calculator

Percentage calculations are among the most frequently used mathematical operations in engineering, finance, education, construction, logistics, and business reporting. This reusable calculation is implemented as a deterministic formula inside the SmartFormulaPRO formula engine, allowing professionals to perform consistent calculations through offline work and mobile applications without spreadsheet dependencies. Formula logic is maintained independently from spreadsheet workbooks, making calculations reusable across different industries.

// --- INPUTS --- ?Value [number] = value ?Percentage (%) [number] = percentage // --- CALCULATIONS --- @Result = value * (percentage / 100) // --- OUTPUTS --- #Percentage Value = ROUND(@Result,2)
Example**Input**<br><br>* Value = 850 <br>* Percentage = 15<br><br>**Calculation**<br><br>850 × 15%<br><br>**Output**<br><br>127.50

This reusable calculation demonstrates how SmartFormulaPRO stores deterministic formula logic instead of spreadsheet formulas. The same professional calculation can be reused across engineering calculation, financial calculation, offline calculation, mobile calculation, and standardized calculation workflows.

---


Percentage Increase Calculator

Percentage increase calculations are commonly used to evaluate growth, inflation, pricing changes, engineering measurements, and business performance. SmartFormulaPRO executes this reusable calculation using a deterministic formula engine that separates calculation logic from spreadsheet layouts. The same custom formula can be reused repeatedly across multiple industries.

// --- INPUTS --- ?Original Value [number] = originalValue ?Increase Percentage (%) [number] = increasePercentage // --- CALCULATIONS --- @NewValue = originalValue * (1 + (increasePercentage / 100)) // --- OUTPUTS --- #Increased Value = ROUND(@NewValue,2)
Example**Input**<br><br>* Original Value = 240 <br>* Increase Percentage = 12<br><br>**Calculation**<br><br>240 × 1.12<br><br>**Output**<br><br>268.80

SmartFormulaPRO replaces copy-pasted spreadsheet cells with reusable formula definitions. This deterministic formula supports engineering calculation, financial calculation, on-site field work, desktop use, and mobile professional workflows without relying on spreadsheet workbooks.

---


Average Calculator

Average calculations are fundamental across engineering, finance, education, logistics, manufacturing, and scientific analysis. This reusable calculation is implemented inside the SmartFormulaPRO formula engine as a deterministic formula, enabling professionals to perform repeatable calculations without maintaining spreadsheet formulas across multiple worksheets.

// --- INPUTS --- ?Total Value [number] = totalValue ?Count [number] = count // --- CALCULATIONS --- @Average = IF(count == 0, 0, totalValue / count) // --- OUTPUTS --- #Average = ROUND(@Average,2)
Example**Input**<br><br>* Total Value = 580 <br>* Count = 8<br><br>**Calculation**<br><br>580 ÷ 8<br><br>**Output**<br><br>72.50

Unlike traditional spreadsheets that duplicate formulas throughout worksheets, SmartFormulaPRO stores reusable deterministic calculation logic inside its formula engine. This approach simplifies engineering calculation, financial calculation, offline field applications, desktop environments, and mobile devices workflows.

---


Ratio Calculator

Ratio calculations are widely used in engineering, accounting, logistics, manufacturing, construction, and scientific research to compare quantities and evaluate proportional relationships. SmartFormulaPRO performs this reusable calculation using a deterministic formula engine that stores formula logic independently from spreadsheet structures.

// --- INPUTS --- ?Numerator [number] = numerator ?Denominator [number] = denominator // --- CALCULATIONS --- @Ratio = IF(denominator == 0, 0, numerator / denominator) // --- OUTPUTS --- #Ratio = ROUND(@Ratio,4)
Example**Input**<br><br>* Numerator = 360 <br>* Denominator = 480<br><br>**Calculation**<br><br>360 ÷ 480<br><br>**Output**<br><br>0.7500

SmartFormulaPRO stores reusable formula logic instead of spreadsheet formulas, allowing deterministic engineering calculations and financial calculations to be reused across desktop systems, offline calculation, mobile calculation, and standardized calculation workflows.

---


Percentage Difference Calculator

Percentage difference calculations help compare two values in engineering, finance, quality control, manufacturing, construction, and scientific applications. This calculation runs inside the SmartFormulaPRO formula engine as a deterministic, reusable formula, allowing professionals to perform consistent calculations without depending on spreadsheet workbooks.

// --- INPUTS --- ?Old Value [number] = oldValue ?New Value [number] = newValue // --- CALCULATIONS --- @Difference = newValue - oldValue @DifferencePercent = IF(oldValue == 0, 0, (@Difference / oldValue) * 100) // --- OUTPUTS --- #Difference = ROUND(@Difference,2) #Percentage Difference (%) = ROUND(@DifferencePercent,2)
Example**Input**<br><br>* Old Value = 420 <br>* New Value = 483<br><br>**Calculation**<br><br>483 − 420<br><br>63 ÷ 420 × 100<br><br>**Output**<br><br>* Difference = 63 <br>* Percentage Difference = 15.00%

This reusable calculation illustrates how SmartFormulaPRO centralizes deterministic formula logic instead of spreadsheet relationships. The same professional calculation can be executed repeatedly for engineering calculation, financial calculation, offline calculation, mobile calculation, and reusable calculation workflows across many industries.