freeCodeCamp/guide/arabic/mathematics/converting-between-radians-.../index.md

30 lines
789 B
Markdown

---
title: Converting Between Radians and Degrees
localeTitle: تحويل بين راديان ودرجات
---
## تحويل بين راديان ودرجات
### الصيغ العامة
يمكن استخدام الصيغ التالية للتحويل بين الراديان والدرجات:
`r = d * (π / 180)
d = r * (180 / π)
where r is the angle in radians and d is the angle in degrees.
`
### أمثلة
تحويل 2π / 3 راديان إلى درجات:
`2π/3 * 180/π = 360π/3π = 360/3 = 120 degrees
`
تحويل 30 درجة إلى راديان:
`30 * π/180 = 30π/180 = π/6 or (1/6)π radians
Note: Radians are usually expressed in terms of π instead of a rounded decimal as this form represents the actual value rather than an approximation.
`