Расчет площади треугольника в excel

Известно, что геометрия упрощает математику и вычисления. Площадь основных форм, таких как прямоугольник, треугольник и круг, можно вычислить с помощью определенных формул. Если вам нужно рассчитать площадь основных фигур для диапазона записей, Excel будет очень полезен. В этой статье мы объяснили процедуру вычисления площадей прямоугольника, круга и треугольника в Excel.

Вычислить площади прямоугольника, треугольника и круга в Excel

Основная формула для вычисления площади прямоугольника в Excel: длина * высота. Таким образом, синтаксис формулы для определения площади прямоугольника в Excel будет выглядеть так:

=<cell with length>*<cell with height>

Например. Предположим, у нас есть список длин прямоугольников, распределенных по столбцу A от ячейки A3 до A11, и высоты прямоугольников, распределенных по столбцу B от B3 до B11. Нам нужна площадь прямоугольника в столбце C от C3 до C11.

Теперь формула прямоугольника для C3 будет выглядеть так:

=A3*B3

Вы можете использовать функцию Fill, чтобы переместить формулу до C11. Просто щелкните за пределами ячейки C3 и вернитесь к ней. Затем используйте кнопку заполнения в правом нижнем углу, чтобы сдвинуть выделение до C11.

Вычислить площадь треугольника в Excel

Рассчитать площадь треугольника в Excel

Формула для вычисления площади треугольника: (длина * высота) / 2. Таким образом, синтаксис формулы для определения площади треугольника в Excel будет выглядеть так:

=(<cell with length>*<cell with height>)/2

Например. Давайте рассмотрим длину и высоту в столбцах A и B, как в предыдущем примере. Нам нужны площади треугольников в столбце D от D3 до D11.

Теперь формула для треугольников для C3 будет выглядеть так:

=(A3*B3)/2

Вы можете использовать функцию Fill, как объяснялось ранее, чтобы перенести формулу до D11.

Вычислить площадь круга в Excel

Площадь круга в Excel

Площадь круга равна 3,14 * (радиус * радиус). Чтобы создать формулу в Excel, я мог бы предложить экспоненциальную функцию, однако, поскольку цель состоит в том, чтобы просто найти квадрат, мы можем немного изменить формулу. Синтаксис поиска площади круга в Excel выглядит следующим образом:

=3.14*<cell with radius>*<cell with radius>

Например, если у нас есть список радиусов в столбце F от F3 до F11 и нам нужны площади кругов в столбце G от G3 до G11, тогда формула для ячейки G3 будет выглядеть так:

=3.14*F3*F3

Вы можете использовать функцию Fill, чтобы перетащить формулу в ячейку G11.

Это работает?

Рассчитать площадь прямоугольника в Excel

В этом учебном материале по Excel мы рассмотрим примеры того как рассчитать площадь треугольника

Как в Excel найти площадь треугольника

Общая формула

= (a * h) / 2

Описание

Чтобы вычислить площадь треугольника в Excel, вы можете использовать стандартную формулу, адаптированную с помощью математических операторов Excel. В показанном примере формула в ячейке C5, имеет следующий вид:

который вычисляет площадь треугольника с заданной высотой из столбца B и основанием из столбца C.

Пояснение

В геометрии площадь треугольника определяется по следующей формуле:
Формула расчета площади треугольнка
где a представляет собой основание треугольника, а h представляет собой высоту, измеренную под прямым углом к ​​основанию. В Excel эту же формулу можно представить так:

Так, например, чтобы вычислить площадь треугольника с основанием 4 и высотой 3:

В показанном примере цель состоит в том, чтобы вычислить площадь для десяти треугольников с основанием, указанным в столбце B, и высотой, указанной в столбце C.
Формула в ячейке D5:

Поскольку эта формула копируется в таблицу, она вычисляет разные площади в каждой новой строке.
Примечание. Скобки в этой формуле являются необязательными и предназначены только для удобства чтения. В порядке операций Excel умножение выполняется перед делением, поэтому скобки не нужны.

Download PC Repair Tool to quickly find & fix Windows errors automatically

Geometry is known to make mathematics and calculations easy. The area of basic shapes like rectangle, triangle, and circle can be calculated using certain formulae. If you need to calculate the area of basic shapes for a range of entries, Excel would be very useful. In this article, we have explained the procedure to calculate areas of a rectangle, circle, and triangle in Excel.

Calculate areas of rectangle, triangle, and circle in Excel

The basic formula for calculating the area of a rectangle in Excel is: length * height. Thus, the syntax of the formula for finding the area of a rectangle in Excel would become:

=<cell with length>*<cell with height>

Eg. Let us assume we have a list of lengths of rectangles spread across column A from cell A3 to A11 and the heights of the rectangles spread across column B from B3 to B11. We need the area of the rectangle in column C from C3 to C11.

Now, the formula for the rectangle for C3 would become:

=A3*B3

You could use the Fill function to pull the formula down to C11. Simply click outside the cell C3 and back on it. Then use the fill button at the right bottom corner to pull the selection down to C11.

Calculate the area of a Triangle in Excel

Calculate area of triangle in Excel

The formula for calculating the area of a triangle is (length * height)/2. Thus, the syntax of the formula for finding the area of a triangle in Excel would become:

=(<cell with length>*<cell with height>)/2

Eg. Let us consider the length and height in columns A and B as in the previous example. We need the areas of the triangles in column D from D3 to D11.

Now, the formula for the triangles for C3 would become:

=(A3*B3)/2

You can use the Fill function as explained earlier to pull the formula down to D11.

Calculate the area of a Circle in Excel

Area of Circle in Excel

The area of a circle is 3.14*(radius*radius). To create the formula in Excel, I could suggest the exponential function however, since the goal is just to find the square, we can twist the formula a little. The syntax to find the area of a circle in Excel is as follows:

=3.14*<cell with radius>*<cell with radius>

Eg, if we have the list of radii in column F from F3 to F11 and we need the areas of the circles in column G from G3 to G11, then the formula for cell G3 would become:

=3.14*F3*F3

You could use the Fill function to pull the formula down to cell G11.

Does this work?

Ezoic

Karan is a B.Tech, with several years of experience as an IT Analyst. He is a passionate Windows user who loves troubleshooting problems and writing about Microsoft technologies.

Формула объема в таблице в Excel помогает быстро посчитать объем нужной фигуры, а сделать это можно при помощи инструкции выше.

  • Параллелограмм;
  • Круг;
  • Треугольник.

Видеоинструкция

Формула площади параллелограмма

Для того, чтобы вычислить данный показатель у этой фигуры потребуется использовать формулу:

=C2*F2

Формула площади параллелограмма в Excel

Пример можно скачать ниже:

Круг

В случае с этой данной фигурой поможет конструкция:

=ПИ()*(D8^2)

Формула площади круга в Excel

Пример:

Треугольник

Для треугольника рекомендуется воспользоваться формулой:

=(1/2)*B14*D14*SIN(F14)

Формула площади треугольника в Excel

Пример:

Summary

To calculate the area of a triangle in Excel, you can use the standard formula, adapted with Excel’s math operators. In the example shown, the formula in C5, copied down, is:

=(B5*C5)/2

which calculates the area of a triangle given height from column B and base from column C.

Generic formula

Explanation 

In geometry, the area enclosed by a triangle is defined by this formula:

where b represents the base of the triangle, and h represents the height, measured at right angles to the base. In Excel, the same formula can be represented like this:

A=b*h/2

So, for example, to calculate the area of a triangle with a base of 4 and a height of 3:

=4*3/2 // returns 6

 In the example shown, the goal is to calculate the area for eleven triangles with base given in column B and height given in column C. The formula in D5 is:

=(B5*C5)/2

As this formula is copied down the table, it calculates a different area at each new row.

Note: The parentheses in this formula are optional and for readability only. In Excel’s order of operations, multiplication will occur before division, so the parentheses are unnecessary.

Dave Bruns Profile Picture

AuthorMicrosoft Most Valuable Professional Award

Dave Bruns

Hi — I’m Dave Bruns, and I run Exceljet with my wife, Lisa. Our goal is to help you work faster in Excel. We create short videos, and clear examples of formulas, functions, pivot tables, conditional formatting, and charts.

This is a great resource. I’ve pinned it to my start menu, so I can access it easily. I’ve discovered some things on my own, but this site really helps speed things up.

Get Training

Quick, clean, and to the point training

Learn Excel with high quality video training. Our videos are quick, clean, and to the point, so you can learn Excel in less time, and easily review key topics when needed. Each video comes with its own practice worksheet.

View Paid Training & Bundles

Help us improve Exceljet

Понравилась статья? Поделить с друзьями:
  • Расчет площади воздуховодов excel
  • Расчет площади в таблице excel
  • Расчет плотности нефтепродуктов в зависимости от температуры в excel
  • Расчет платы за электроэнергию excel
  • Расчет платежей за коммунальные услуги в microsoft excel