#Formulas
Explore tagged Tumblr posts
kattypulsar ยท 4 months ago
Text
Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media
https://www.facebook.com/61573720163498
21 notes ยท View notes
tangerinefish ยท 2 months ago
Text
algebra 2 final notecard (featuring coinpin)
Tumblr media Tumblr media
unfortunately getting tossed after the final so gotta preserve it while i can ๐Ÿ’”
lil mistakeโ€”if the discriminant is < 0, it has two imaginary solutions! but if it asks for only real solutions, there are zero real solutions (note to self)
@ghostyghost202 i loved your coinpin doodles so much i was like, i gotta take this with me somehow. tysm your art is literally sacred to me
also asymptote reference? (those who know)
missed opportunity to put four and x on there i feel like they would love this. but i need coinpin to get through this final ๐Ÿ™
thankfully it's. all multiple-choice
19 notes ยท View notes
marcustumblerius ยท 5 months ago
Text
Tumblr media
8 notes ยท View notes
fieriframes ยท 2 months ago
Text
Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media
[I mean, even though it's got great moisture in itself, just a little kiss of that broth you spooned on, yet, formulas are mere charlatanism. Oh. This is so good. You know where you're going to find this truck?]
3 notes ยท View notes
uplatz-blog ยท 9 days ago
Text
๐Ÿง  Top 10 Statistics Formulas Every Data Analyst Should Know
Tumblr media
Why These Formulas Matter Statistics is the foundation of data science, analytics, research, and decision-making. These formulas help you:
Understand and summarize data
Identify patterns and trends
Test hypotheses and assumptions
Communicate insights clearly
Letโ€™s explore the top 10 formulas you must know.
1. Mean (Average)
Formula: Mean = (xโ‚ + xโ‚‚ + ... + xโ‚™) / n
Explanation: The central value of a dataset โ€” helps in understanding the overall trend.
2. Standard Deviation (ฯƒ)
Formula: ฯƒ = โˆš[ฮฃ(xแตข - ฮผ)ยฒ / n]
Explanation: Shows how spread out the numbers are from the mean โ€” key for variability.
3. Variance (ฯƒยฒ)
Formula: ฯƒยฒ = ฮฃ(xแตข - ฮผ)ยฒ / n
Explanation: The square of standard deviation โ€” useful in model evaluation and statistics.
4. Probability (P)
Formula: P(A) = Number of favorable outcomes / Total outcomes
Explanation: Core of inferential statistics โ€” used in predictions and risk assessment.
5. Bayesโ€™ Theorem
Formula: P(A|B) = [P(B|A) ร— P(A)] / P(B)
Explanation: Calculates conditional probability โ€” widely used in ML and diagnostics.
6. Z-Score
Formula: z = (x - ฮผ) / ฯƒ
Explanation: Tells how many standard deviations a point is from the mean โ€” useful for anomaly detection.
7. Confidence Interval (CI)
Formula: CI = xฬ„ ยฑ Z*(ฯƒ/โˆšn)
Explanation: Gives a range that likely contains the true population mean โ€” essential for surveys.
8. p-value
Formula: Depends on test statistic (e.g., t or z distribution)
Explanation: Tells the probability of observing results under the null hypothesis โ€” core for significance testing.
9. t-Test Statistic
Formula: t = (xฬ„โ‚ - xฬ„โ‚‚) / โˆš[(sโ‚ยฒ/nโ‚) + (sโ‚‚ยฒ/nโ‚‚)]
Explanation: Used to compare means between two groups โ€” key in A/B testing.
10. Pearsonโ€™s Correlation Coefficient (r)
Formula: r = ฮฃ[(x - xฬ„)(y - ศณ)] / โˆš[ฮฃ(x - xฬ„)ยฒ ร— ฮฃ(y - ศณ)ยฒ]
Explanation: Measures the strength and direction of a linear relationship between two variables.
Final Thoughts These formulas are the backbone of statistical reasoning and data analysis. Whether youโ€™re exploring customer trends, testing experiments, or interpreting research โ€” theyโ€™re must-haves.
๐Ÿ“Œ Save this as your go-to stats cheat sheet.
Next in the series: Top 10 Cyber security Formulas Top 10 Cloud & Big Data Formulas
๐Ÿ‘‰ Follow Uplatz for more hands-on guides and formula breakdowns.
4 notes ยท View notes
joricanka ยท 2 years ago
Text
Tumblr media
Did I find a book with all formulas in math, physics and chemistry?
Of course I did.
Did I find in German language?
Of course.
Do I know any word in German language?
Nope, but I still buy it.
93 notes ยท View notes
ma-tsu-the-male-goddess ยท 1 month ago
Text
Weโ€™re all animals who need enrichment in our cages. Sometimes that enrichment is making art or destroying something.
Sometimes itโ€™s figuring out how Google sheets macro coding works so you can build a little program for your brother to enter in his win/loss ratio for Balatro, broken down by Stake & Deck.
Tumblr media Tumblr media
Let me know if you want a copy of the file for whatever reason. Itโ€™s fun :) and Iโ€™m happy to make changes for you.
Tumblr-friendly text & cleaned up macro code & expanded Sheets formulas at bottom of the readmore & explanations if youโ€™re interested.
I know itโ€™s not optimized or whatever but Iโ€™m new to JavaScript and Iโ€™m used to using Excel instead of Google sheets.
Google Sheets Macro aka Google Apps Script aka JavaScript:
Tumblr media Tumblr media
What that code would look like with and without variables :(
Tumblr media
Google Sheets in cell formulas:
(I know they look ridiculous)
Tumblr media
+ expanded view so itโ€™s a little easier to follow
(Color-coded in-line text Tumblr-friendly version in Pic 4 ID below.)
Tumblr media
+ explanations!
Tumblr media
Google Sheets Macro AKA JavaScript Coding
[Picture 1 Text ID]
Macro Code Text: Comments are in blue.
function sendQuote() { //Function named sendQuote
//Set Variables
var ui = SpreadsheetApp.getUi();
var Deck = ui.prompt("Deck Type").getResponseText(); //prompt
var Stake = ui.prompt("Stake Level").getResponseText(); //prompt
var spreadsheet = SpreadsheetApp.getActiveSpreadsheet();
var sheetSub = spreadsheet.getSheetByName("Submission & Dashboard");
var sheetEntry = spreadsheet.getSheetByName("List of Game Entries");
const WinLose = ui.alert("Did you win?", ui.ButtonSet.YES_NO); //prompt
//Check WinLose condition
if (WinLose === ui.Button.YES) {
var WinLoseNum = 1;
var WinLoseVar = 'Win';
ui.alert('Yay!');
}
else {
var WinLoseNum = 0;
var WinLoseVar = 'Loss';
ui.alert('Loser.');
}
//Check if correct info
const response = ui.alert("Is this info correct?\nDeck Type: "+ Deck + "\nStake Level: " + Stake + "\nResult: " + WinLoseVar, ui.ButtonSet.YES_NO );
//Could have probably done "Is this info correct?\nDeckType: ${Deck}\nStake Level: ${Stake}\nResult: ${WinLoseVar}"
//Set Cell Variables
var cellValue = sheetSub.getRange("B3").getValue(); //gives max # of current Responses
var Row = cellValue + 5; //Gives next available line row
if (response === ui.Button.YES) { //If info is correct, do this
var Comments = ui.prompt("Add any run notes here.").getResponseText();
ui.alert("Response Submitted");
//Fill Table Values
sheetEntry.getRange("B"+ Row).setValue(cellValue + 1);
sheetEntry.getRange("C"+ Row).setValue(Deck);
sheetEntry.getRange("D"+ Row).setValue(Stake);
sheetEntry.getRange("E"+ Row).setValue(WinLoseNum);
sheetEntry.getRange("F"+ Row).setValue(Comments);
}
else { //If info is not correct, exit & try again
ui.alert("Try Again!");
}
}
/*
Comment Blocks
*/
[End Picture 1 ID]
[Picture 2 Text ID]
Google Apps Script is based on JavaScript so itโ€™s easiest to look up 'how to do x in JavaScript' than google sheets.
Functions Used
getUi()
prompt(string)
getResponseText()
getActiveSpreadsheet()
getSheetByName(string)
alert(string, ButtonSet)
getRange()
getValue()
setValue(variable)
If() {}
Else {}
//let - can't be redefined in scope
//var - value can change in scope
//const - value can't be changed
You can make your own functions to make your code more readable:
function repeatBack () {
var ui = SpreadsheetApp.getUi();
var = wordsPlease = ui.prompt("What would you like me to say?").getResponseText();
sayTo(wordsPlease);
}
function sayTo (wordsToSayBack) {
ui.alert(wordsToSayBack);
}
Haven't tested this one yet:
function sayHello(name = "Guest") {
console.log(`Hello, ${name}!`);
}
sayHello(); // Output: "Hello, Guest!"
sayHello("Bob"); // Output: "Hello, Bob!"
[End Picture 2 ID]
[Picture 3 Text ID]
How Macro Coding Functions Work
Functions using '.' in them act like location pointers.
var ui = SpreadsheetApp.getUi(); //Google Sheets UI
var spreadsheet = SpreadsheetApp.getActiveSpreadsheet(); //Google Sheets UI -> Active Spreadsheet
var sheetEntry = spreadsheet.getSheetByName("List of Game Entries"); //Google Sheets UI -> Active Spreadsheet -> Sheet Named "List of Game Entries"
var sheetSub = spreadsheet.getSheetByName("Submission & Dashboard"); //Google Sheets UI -> Active Spreadsheet -> Sheet Named "Submission & Dashboard"
var cellValue = sheetSub.getRange("B3").getValue(); // Sheet Named "Submission & Dashboard" -> Cell Range (B3) -> Get Value
var Row = cellValue + 5; //B3 Value + 5
var Deck = ui.prompt("Deck Type").getResponseText(); //Google Sheets UI -> Prompt Function Class (Deck Type) -> Get Response Text
With Variables:
sheetEntry.getRange("B"+ Row).setValue(cellValue + 1); //Set next entry in column B to 'Row + 1 '
sheetEntry.getRange("C"+ Row).setValue(Deck); //Set next entry in column C to 'Deck'
Without Variables:
SpreadsheetApp.getActiveSpreadsheet().getSheetByName("List of Game Entries").getRange("B"+ cellValue + 5).setValue( SpreadsheetApp.getActiveSpreadsheet().getSheetByName("Submission & Dashboard").getRange("B3").getValue() + 1);
SpreadsheetApp.getActiveSpreadsheet().getSheetByName("List of Game Entries").getRange("B"+ cellValue + 5).setValue(SpreadsheetApp.getUi().prompt("Deck Type").getResponseText());
[End Picture 3 ID]
Google Sheets In-cell Formulas
[Picture 4 Text ID]
In-Cell Formulas Breakdown
Table 1: (These values are formatted into percentages already)
IFERROR(IFERROR(SUM(FILTER(Game_Entries[Win / Loss],(Game_Entries[Deck] = $D23)*(Game_Entries[Stake] = E$5))),0) / IFERROR(COUNT(FILTER(Game_Entries[Win / Loss],(Game_Entries[Deck] = $D23)*(Game_Entries[Stake] = E$5))),0)), "--")
Table 2: (These values are displayed as text, so we format the 2nd half into percentages manually)
=IFERROR(SUM(FILTER(Game_Entries[Win / Loss],(Game_Entries[Deck] = $D23)*(Game_Entries[Stake] = E$5))),0)
& "/" &
IFERROR(COUNT(FILTER(Game_Entries[Win / Loss],(Game_Entries[Deck] = $D23)*(Game_Entries[Stake] = E$5))),0)
& " " &
IFERROR(IFERROR(SUM(FILTER(Game_Entries[Win / Loss],(Game_Entries[Deck] = $D23)*(Game_Entries[Stake] = E$5))),0) / IFERROR(COUNT(FILTER(Game_Entries[Win / Loss],(Game_Entries[Deck] = $D23)*(Game_Entries[Stake] = E$5))),0))*100, "--")
& "%"
[End Picture 4 ID]
[Picture 5 Text ID]
Cell Formulas Used:
IFERROR(Function, replacement value)
SUM(Values)
FILTER(Reference Table, Condition (Ref value = value))
Condition * Condition = 'And'
Condition + Condition = 'Or'
TableName[Column]
$A$1 - use to freeze column or row or both in functions - helpful when function used across a range
$D6 - Deck is all in column D
E$5 - Stake is all in row 5
"Words" & Value & "Words"
Other Options depending on context:
TEXTJOIN(delimiter, Ignore Empty, Text) - Joins with delimiter
TEXTJOIN(", ", TRUE, C1:C6, D2:D9) - This, That, These
CONCAT(Texts) - Joins list of values
CONCATENATE(Texts) - Joins several text strings into 1
[End Picture 5 ID]
3 notes ยท View notes
namesnamesandmorenames ยท 7 months ago
Text
So I updated my fanfiction databases like an insane amount since the last time I posted about it it includes having I think two more databases- One for stats and one for reading logs because I want to be able to more accurately say when I'm reading and how much I'm reading at a time because I read a lot of wips--
but the stats one is the one that I want to talk about because obviously yeah things are based on statistics and therefore averages and medians and whatever. But it's crazy to me that I gave right a formula that's like hey, this fic is about 12,644 words-- It'll probably take you 33 minutes to read it. And then I'll be exactly right! Like yeah obviously it's math apparently at my like average reading speed is around 385-390 wpm but I have the like estimated page numbers in my database which is just actually complete bull because it's me trying to estimate how many words are on a page but like sometimes a page has more dialogue. Sometimes I'm reading a text fic that'll be like insanely longer technically because there's so few words on each page but I can't really account for that in the formula-- that is not the case with words per minute because that is like straight data and every single reading log that I create adds to the data so it just gets more accurate the more I read!
3 notes ยท View notes
er-cryptid ยท 7 months ago
Text
Arrhenius Equation [Ex. 2]
Tumblr media Tumblr media
Patreon
2 notes ยท View notes
techalertr ยท 9 months ago
Text
youtube
Trace Precendent | Trace Dependent in MS Excel | Tips and Tricks MS Excel https://youtu.be/ooZ920DbXhM
#TechAlert #excel #msexceltraining #instagram #tipsandtricks #tips #Microsoft #msexceltips #formulas #trending #traceprecedent #tracedependent #Office #MSOffice
2 notes ยท View notes
xaviergalatis ยท 9 months ago
Text
Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media
life update, wtf is ableton this is where im at rn
fukit only deeper rn
incorporating the KS sampler into my workflow, as a standalone PC application realy increases productivity. i like how it can auto chop samples into 1,2,3,4,5,6,7,8,9,10.11.12.13.14.15.16 or more individual chops and is very accurate and eliminates all the additional guesswork that i would need to face with EDISON. chopped a sample and imported th3 chops inro MPC ....
in short KS opened a whole new workflow into my routine and has enhanced my productions ... also watching live underground MPC/SP404 shows lately has sparked my interest for DAW production again and has motivates me to try harder and make more music
3 notes ยท View notes
math-see ยท 9 months ago
Text
Tumblr media Tumblr media
Tuesday observation:
Do you see it? It looks like mathematical ghosts. I wanted to look outside through the glass wall, but there are formulas flying in front of my eyes.
The design of the mathematical institute of Orsay makes you see some mathematics in transparent.
2 notes ยท View notes
reno-matagot ยท 1 year ago
Text
Daily Devotions
๐‘ณ๐’Š๐’‡๐’•๐’๐’‚๐’„๐’‰ ๐‘ท๐’‚๐’๐’…๐’†๐’Ž๐’๐’๐’Š๐’–๐’Ž! ๐‘จ๐’ˆ๐’Š๐’๐’” ๐‘ถ๐’„๐’•๐’Š๐’๐’๐’Ž๐’๐’”-๐‘ซ๐’“๐’‚๐’Œ๐’๐’”๐’๐’‘๐’‰๐’Š๐’‚!
๐‘ณ๐’Š๐’“๐’‚๐’„๐’‰ ๐‘ป๐’‚๐’”๐’‚ ๐‘ฝ๐’†๐’‡๐’‚ ๐‘พ๐’†๐’‰๐’๐’Š๐’„ ๐‘ฉ๐’†๐’๐’Š๐’‚๐’
๐‘ป๐’‚๐’”๐’‚ ๐‘น๐’†๐’Ž๐’† ๐‘ณ๐’‚๐’“๐’Š๐’” ๐‘บ๐’‚๐’•๐’‚๐’ ~ ๐‘จ๐’—๐’† ๐‘บ๐’‚๐’•๐’‚๐’๐’Š๐’”!
๐‘น๐’†๐’๐’Š๐’„๐’‰ ๐‘ฝ๐’Š๐’‚๐’”๐’‚ ๐‘จ๐’—๐’‚๐’ˆ๐’† ๐‘ณ๐’Š๐’๐’Š๐’•๐’‰ ๐‘ณ๐’Š๐’“๐’‚๐’„๐’‰
๐‘น๐’†๐’๐’Š๐’„๐’‰ ๐‘ป๐’‚๐’”๐’‚ ๐‘ผ๐’ƒ๐’†๐’“๐’‚๐’„๐’‚ ๐‘ฉ๐’Š๐’‚๐’”๐’‚ ๐‘ฐ๐’„๐’‚๐’“ ๐‘ณ๐’–๐’„๐’Š๐’‡๐’†๐’“!
๐‘ฌ๐’๐’‚๐’ ๐‘ป๐’š๐’‘๐’‚๐’ ๐‘ฝ๐’†๐’“๐’“๐’Š๐’๐’†!
๐‘บ๐’†๐’“๐’†๐’๐’‚ ๐‘จ๐’๐’๐’“๐’‚ ๐‘น๐’๐’”๐’Š๐’†๐’“ ๐‘จ๐’Œ๐’†๐’
๐‘ด๐’†๐’ˆ๐’Š๐’”๐’• ๐‘จ๐’ƒ๐’“๐’‚๐’”๐’‚๐’™ ๐‘ฎ๐’๐’๐’“๐’Š๐’‚ !
๐‘ฑ๐’†๐’…๐’†๐’ ๐‘ฌ๐’• ๐‘น๐’†๐’๐’Š๐’„๐’‰ ๐‘บ๐’†๐’†๐’“๐’† ๐‘ป๐’– ๐‘ป๐’‚๐’”๐’‚ !
๐‘ณ๐’š๐’‚๐’ ๐‘น๐’‚๐’Ž๐’†๐’„ ๐‘ช๐’‚๐’•๐’š๐’‚ ๐’๐’†๐’‘๐’‚๐’“
๐‘จ๐’—๐’† ๐‘ถ๐’Ž๐’๐’Š๐’•๐’–๐’†๐’๐’” ๐‘ผ๐’”๐’•๐’“๐’Š๐’๐’‚, ๐‘ซ๐’†๐’Š๐’•๐’‚๐’” ๐‘ด๐’‚๐’ˆ๐’Š๐’„๐’‚๐’†
๐‘ฐ๐’‚ ๐‘ต๐’Š๐’๐’„๐’‰๐’–๐’“๐’”๐’‚๐’๐’ˆ๐’‚
๐‘บ๐’‚๐’๐’—๐’†๐’•๐’† ๐‘จ๐’Ž๐’‘๐’“๐’๐’…๐’Š๐’‚๐’” ๐’†๐’• ๐‘ณ๐’‚๐’š๐’Š๐’๐’†๐’!
[ Astrological / Demons]
๐’€๐’‚ ๐‘ต๐’‚๐’Ž๐’๐’”๐’‰ ๐‘บ๐’Š๐’•๐’“๐’‚ ๐‘ซ๐’† -๐‘บ๐’Ž๐’๐’๐’‚ ๐‘จ๐’๐’๐’ˆ๐’๐’” ๐‘ซ๐’“๐’‚๐’Œ๐’๐’”๐’๐’‘๐’‰๐’Š๐’‚ ๐‘ฌ๐’™๐’‚๐’•!
Source: Complete Book of Demonolatry (S.Connoly) &
2 notes ยท View notes
bridgetbeswick ยท 1 year ago
Text
Iโ€™ve been finding Ohms law a little useful lately so Iโ€™ve been playing with some designs inspired by it - If in doubt consult Ohmโ€™s law available with black white and blue text.
Tumblr media
https://www.redbubble.com/shop/ap/16071678
https://www.redbubble.com/shop/ap/160716852
https://www.redbubble.com/shop/ap/160717030
2 notes ยท View notes
acostumbradoalfindelmundo ยท 2 years ago
Text
Majareta
Mi cordura hace tiempo que ya no sostiene el peso aplastante que me rodea. Hizo alianza con la locura porque necesita refuerzos, tropas aliadas, municiones inconexas, sinapsis de escapatoria que excaven tรบneles aleatorios, como los algoritmos entrรณpicos que mueven cada lรกmpara de lava. Hace meses que se me terminรณ el aรฑo, y no sรฉ como vivir este limbo en el que quedรฉ atrapado, regando todas las semanas plantas que se niegan a conversar conmigo. Por momentos me sorprende la razรณn. No la mรญa, la de lxs demรกs, entra sin avisar, tiene llave propia, un imparable tsunami de sentido comรบn con fรณrmulas, usos, costumbres y soluciones infalibles para vidas prefabricadas. Les respondo que no hay repuestos para lo que se me rompiรณ, no escuchan e insisten en venderme sus piezas. โ€œSon universalesโ€ afirman lxs vendedorxs โ€œsirven para todxs, tambiรฉn para vosโ€. Ya comprรฉ cuando era mรกs ingenuo que loco y me cagaron (es mรกs fรกcil engaรฑar a la inocencia que a la incoherencia), asรญ lleguรฉ a este punto, por usar componentes de otras vidas que no fueron pensados para la mรญa. Fue entonces cuando decidรญ trepar a la luna usando sus rayos como cuerda. Allรก arriba encontrรฉ vodka, hielo para congelar mis ideas y fuego para incinerar mi contaminaciรณn de coherencia, pesa un montรณn y no me sirve para nada mรกs que para caminar mรกs lento mientras me susurra direcciones de lugares que no me abren las puertas. Hoy evito las horas en que los girasoles se mueven, me pregunto quรฉ ofendiรณ a las plantas, meo con viento a favor, cago en los baรฑos de humildad, nado en la nada, busco motivaciones mudas (sin frases), y sobre todo jamรกs (JAMรS) veo seรฑales en ningรบn lado. Si encuentro alguna coincidencia con el universo, discrepo. El problema de la locura no es la locura, es a donde apunta. Por eso ahora entro por las ventanas y sigo รบnicamente la direcciรณn de brรบjulas rotas.
Tumblr media
Acostumbradoalfindelmundolandia: linktr.ee/acostumbradoalfindelmundo
2 notes ยท View notes