Oran Orantı Hesaplama: API ve MCP
Oran Orantı Hesaplama için REST ve MCP başvurusu: girdi alanları, sınırlar, çıktılar, örnek istek ve gerçek yanıt. Ücretsiz, kayıt yok.
GET /api/v1/tools/math.ratio/mcp/math
- Kimlik
math.ratio- Sürüm
- 1.0.0
- Erişim
- Ücretsiz
- Araç sayfası
- Oran Orantı Hesaplama
- Şema
GET /api/v1/tools/math.ratio
Girdiler
| Alan | Tür | Sınırlar | Varsayılan | Açıklama |
|---|---|---|---|---|
a (zorunlu) | number | ≥ -1.000.000.000.000, ≤ 1.000.000.000.000 | a (birinci değer) | |
b (zorunlu) | number | ≥ -1.000.000.000.000, ≤ 1.000.000.000.000 | b (a’ya karşılık gelen değer) | |
c (zorunlu) | number | ≥ -1.000.000.000.000, ≤ 1.000.000.000.000 | c (yeni değer) | |
kind | string | direct | inverse | direct | Orantı türü |
Çıktılar
| Alan | Tür | Açıklama |
|---|---|---|
x | number | x (bilinmeyen) |
constant | number | Orantı sabiti (k) |
Örnek istek
{
"input": {
"a": 3,
"b": 12,
"c": 5,
"kind": "direct"
},
"locale": "tr"
}Örnek yanıt
{
"output": {
"x": 20,
"constant": 4
},
"steps": [
{
"id": "constant",
"formula": "k = b / a",
"substitution": "k = 12 / 3",
"value": 4
},
{
"id": "x",
"formula": "x = b × c / a",
"substitution": "x = 12 × 5 / 3",
"value": 20
}
],
"meta": {
"toolVersion": "1.0.0",
"locale": "tr"
},
"citation": {
"url": "https://hesaplayici.com/matematik/oran-oranti-hesaplama",
"title": "Oran Orantı Hesaplama"
}
}