Calculator Tools Calculator Tools

Inverse 2.0

Feb 24, 2024

About this app

Inverse 2.0: A tool to convert European decimal odds into raw probabilities and calculate points based on match outcomes.

Inverse 2.0 Inverse 2.0 Odds for Team A Win: Odds for Draw: Odds for Team B Win: Team A Win Draw Match Team B Win Calculate Probabilities

Put this on your site

Source

index.html
                    <html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">

<title>Inverse 2.0</title>
<meta name="description" content="A tool to convert European decimal odds into raw probabilities and calculate points based on match outcomes.">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="main-container" class="container">
<h1>Inverse 2.0</h1>
<form id="oddsForm">
<label for="oddsA">Odds for Team A Win:</label>
<input type="number" id="oddsA" name="oddsA" style="width: 60%;"><br>
<label for="oddsD">Odds for Draw:</label>
<input type="number" id="oddsD" name="oddsD" style="width: 60%;"><br>
<label for="oddsB">Odds for Team B Win:</label>
<input type="number" id="oddsB" name="oddsB" style="width: 60%;"><br>
<div style="margin-top: 10px;">
<input type="checkbox" id="winA" name="outcome" value="A">
<label for="winA">Team A Win</label>
<input type="checkbox" id="draw" name="outcome" value="D">
<label for="draw">Draw Match</label>
<input type="checkbox" id="winB" name="outcome" value="B">
<label for="winB">Team B Win</label>
</div>
<button type="button" onclick="calculateProbabilities()">Calculate Probabilities</button>
</form>
<div id="results"></div>
</div>
<script src="script.js"></script>
</body>
</html>