Калькулятор трапеции
Найдите площадь, высоту или одно из оснований трапеции по трем другим значениям. Отобразите длину средней линии (медианы), и — с длинами боковых сторон — периметр и классификацию равнобедренной/разносторонней трапеции, плюс размеченная диаграмма.
Ввод
Оставьте пустым ОДНО значение из основания a, основания b, высоты или площади — остальные три будут использованы для его вычисления.
Вывод
Диаграмма трапеции появится здесь после расчета.
Другие способы использовать этот инструмент
REST API
curl -X POST https://api.iotools.cloud/v1/tool/trapezoid-calculator \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"base1": "6",
"base2": "10",
"height": "4"
}'Подставьте свой собственный ключ из аккаунта. Поля инструмента — это тело запроса, без обёртки.
Спросите у ИИ-агента
Use the IOTools `trapezoid-calculator` tool (Trapezoid Calculator) on this input:
YOUR_INPUT_HEREВставьте это любому агенту, подключённому к MCP-серверу IOTools, и добавьте свой ввод.
Виджет для встраивания
<iframe
src="https://iotools.cloud/embed/trapezoid-calculator/"
width="100%" height="520" frameborder="0" scrolling="no" loading="lazy"
title="Калькулятор трапеции — iotools.cloud"
sandbox="allow-scripts allow-forms allow-same-origin allow-downloads allow-popups allow-popups-to-escape-sandbox"
allow="clipboard-write"
style="width:100%;border:1px solid #e5e7eb;border-radius:12px;overflow:hidden"></iframe>
<script src="https://iotools.cloud/embed.js" async></script>Вставьте это на свою страницу — бесплатно, без ключа, нужна лишь обратная ссылка.
| Стоимость вызова API/MCP | От 5 кредитов |
|---|---|
| Нужно больше кредитов? | Посмотреть тарифы |
Также доступно через
Руководства
Solve a trapezoid's area, height, or either parallel base from the other three values, plus its median (midsegment) length. Add the two leg (non-parallel side) lengths for the perimeter and an isosceles/scalene classification, and get a labeled diagram either way.
The formula
For a trapezoid with parallel bases a and b and height h (the perpendicular distance between them):
area = (a + b) / 2 × hThe median (or midsegment) — the segment connecting the midpoints of the two legs — always has length (a + b) / 2, which is also area / h.
Solve for any of the four
Leave any ONE of base a, base b, height, or area blank and the calculator solves for it from the other three:
- Missing area →
area = (a + b) / 2 × h - Missing height →
h = 2 × area / (a + b) - Missing base a →
a = 2 × area / h − b - Missing base b →
b = 2 × area / h − a
If all four are supplied, the calculator checks they're consistent and flags it if they aren't.
Perimeter and shape (optional)
Fill in leg 1 and leg 2 (the two non-parallel sides) and the calculator also reports:
- Perimeter —
a + b + leg 1 + leg 2 - Shape — isosceles (equal legs) or scalene
How to use it
- Enter any three of base a, base b, height, and area — the fourth is solved for you.
- Optionally add both leg lengths for the perimeter and shape classification.
- Read the labeled diagram and the full solution, or copy the SVG source.
All calculations run in your browser — nothing is uploaded.
What if my four values don't match up?
If you fill in all four of base a, base b, height, and area, the calculator verifies area = (a + b) / 2 × h and tells you what area those three dimensions actually give if it doesn't — leave one field blank instead to have it solved for you.