#Formulas
Explore tagged Tumblr posts
Text








https://www.facebook.com/61573720163498
#memes#viral#funny#humor#kittens#cats#sores#dogs#taxidermy#peekaboo#assemblage#dragonfly#witch#yard#kirby#financial district#1990s#ancient history#science#math#formulas#eat the rich#protest#water cannon#conservative#christian
21 notes
ยท
View notes
Text
algebra 2 final notecard (featuring coinpin)


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
#algebra 2#mathematics#notes#study motivation#study notes#imaginary numbers#bfdi#bfdi coiny#bfdi pin#coinpin#osc#doodle#battle for dream island#graphing#formulas#polynomials#end behavior#factoring#functions#function#more random tags#asymptotes#domain and range#x intercepts#y intercepts#mathblr#i#have a good day
19 notes
ยท
View notes
Text
[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?]
#s34e12 lots of latin#guy fieri#guyfieri#diners drive-ins and dives#great moisture#little kiss#mere charlatanism#broth#formulas#truck
3 notes
ยท
View notes
Text
๐ง Top 10 Statistics Formulas Every Data Analyst Should Know
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
Text

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
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.


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:


What that code would look like with and without variables :(

Google Sheets in cell formulas:
(I know they look ridiculous)

+ expanded view so itโs a little easier to follow
(Color-coded in-line text Tumblr-friendly version in Pic 4 ID below.)
+ explanations!

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]
#cage enrichment#Balatro#coding#excel#google sheets#formulas#personal shenanigans#my art#Gabiโsart#macro#excel macro#javascript#family shenanigans#enrichment
3 notes
ยท
View notes
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
Text
Arrhenius Equation [Ex. 2]


Patreon
#studyblr#notes#chemistry#chemistry notes#chem#chem notes#general chemistry#general chemistry notes#gen chem#gen chem notes#rate constant#arrhenius equation#equations#formulas#chemistry equations#chemistry formulas#reaction rate constants#reaction rates#chemical reactions#calculating chemical reactions#chemistry ex#chemistry example#chem ex#introductory chemistry#intro to chemistry#intro chem#mcat#mcat chemistry#mcat studyblr
2 notes
ยท
View notes
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
#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#youtube#technology#watch video on tech alert yt#like#technical#instagood#shorts#howto#love#Youtube
2 notes
ยท
View notes
Text
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
#photos#ssd#files#images#laptop#formula#formulas#grey#gray#gui#drafts#pink#koala#fl studio#fl#daw#windows#workflow#musicdiary#computing#X
3 notes
ยท
View notes
Text


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
Text
Daily Devotions
๐ณ๐๐๐๐๐๐๐ ๐ท๐๐๐
๐๐๐๐๐๐๐! ๐จ๐๐๐๐ ๐ถ๐๐๐๐๐๐๐๐-๐ซ๐๐๐๐๐๐๐๐๐๐!
๐ณ๐๐๐๐๐ ๐ป๐๐๐ ๐ฝ๐๐๐ ๐พ๐๐๐๐๐ ๐ฉ๐๐๐๐๐
๐ป๐๐๐ ๐น๐๐๐ ๐ณ๐๐๐๐ ๐บ๐๐๐๐ ~ ๐จ๐๐ ๐บ๐๐๐๐๐๐!
๐น๐๐๐๐๐ ๐ฝ๐๐๐๐ ๐จ๐๐๐๐ ๐ณ๐๐๐๐๐ ๐ณ๐๐๐๐๐
๐น๐๐๐๐๐ ๐ป๐๐๐ ๐ผ๐๐๐๐๐๐ ๐ฉ๐๐๐๐ ๐ฐ๐๐๐ ๐ณ๐๐๐๐๐๐!
๐ฌ๐๐๐ ๐ป๐๐๐๐ ๐ฝ๐๐๐๐๐๐!
๐บ๐๐๐๐๐ ๐จ๐๐๐๐ ๐น๐๐๐๐๐ ๐จ๐๐๐
๐ด๐๐๐๐๐ ๐จ๐๐๐๐๐๐ ๐ฎ๐๐๐๐๐ !
๐ฑ๐๐
๐๐ ๐ฌ๐ ๐น๐๐๐๐๐ ๐บ๐๐๐๐ ๐ป๐ ๐ป๐๐๐ !
๐ณ๐๐๐ ๐น๐๐๐๐ ๐ช๐๐๐๐ ๐๐๐๐๐
๐จ๐๐ ๐ถ๐๐๐๐๐๐๐๐ ๐ผ๐๐๐๐๐๐, ๐ซ๐๐๐๐๐ ๐ด๐๐๐๐๐๐
๐ฐ๐ ๐ต๐๐๐๐๐๐๐๐๐๐๐
๐บ๐๐๐๐๐๐ ๐จ๐๐๐๐๐
๐๐๐ ๐๐ ๐ณ๐๐๐๐๐๐!
[ Astrological / Demons]
๐๐ ๐ต๐๐๐๐๐ ๐บ๐๐๐๐ ๐ซ๐ -๐บ๐๐๐๐ ๐จ๐๐๐๐๐ ๐ซ๐๐๐๐๐๐๐๐๐๐ ๐ฌ๐๐๐!
Source: Complete Book of Demonolatry (S.Connoly) &
#devotion practices#left hand path#theistic satanism#theistic luciferianism#devotion#formulas#vk jehannum#daily devotional#daily practice#offerings#enns
2 notes
ยท
View notes
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.
https://www.redbubble.com/shop/ap/16071678
https://www.redbubble.com/shop/ap/160716852
https://www.redbubble.com/shop/ap/160717030
#redbubble#redbubble artists#art#find your thing#findyourthing#artists on tumblr#artist#design#stemblr#stem#science#maths#mathematics#mathblr#engineering#tech#technology#nerd#geek#science gifts#ohms law#ohms triangle#Georgs Ohm#ohmslaw#electronics#math formulas#formulas#equations#steam
2 notes
ยท
View notes
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.

Acostumbradoalfindelmundolandia: linktr.ee/acostumbradoalfindelmundo
#acostumbrado al fin del mundo#majareta#cordura#locura#limbo#razon#sentido comun#formulas#usos#costumbres#respuestas#repuestos#inocencia#incoherencia#ingenuidad#direcciones#puertas#ventanas
2 notes
ยท
View notes