Convert Between Deg Rad

Description

In order to convert radians to degrees we multiply the radians by $\frac{ 180 }{ \pi }$. The Sage cell below shows the degrees of $\pi$ radians.

Sage Cell

Code

rad= pi
deg= rad*(180/pi) 
deg

Options

Option

In order to convert degrees to radians we multiply the degrees by $\frac{ \pi }{ 180 }$. The Sage cell below shows the radians of $180$ degrees.

Code

deg= pi
rad= deg*(pi/180) 
rad

Tags

Primary Tags: Precalculus, Geometric and algebraic foundations for trigonometry

Secondary Tags: Radians, converting radians & degree

Related Cells

None

Attribute

Permalink: http://www.gregorybard.com/Sage.html

Author: Gregory V. Bard, Sage for Undergraduates.

Date: 29 Oct 2018 00:24

Submitted by: James A Phillips

Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-ShareAlike 3.0 License