


A collection of trigonometric function calculation formulas for junior high schools: learn about them one by one
Who can give me the complete set of trigonometric formulas for junior high school
Sine function sin(A)=a/h
Cosine function cos(A)=b/h
tangent function tan(A)=a/b
Cotangent function cot(A)=b/a
Two angles and formula
sin(A B)=sinAcosB cosAsinB
sin(A-B)=sinAcosB-sinBcosA
cos(A B)=cosAcosB-sinAsinB
cos(A-B)=cosAcosB sinAsinB
tan(A B)=(tanA tanB)/(1-tanAtanB)
tan(A-B)=(tanA-tanB)/(1 tanAtanB)
cot(A B)=(cotAcotB-1)/(cotB cotA)
cot(A-B)=(cotAcotB 1)/(cotB-cotA)
Double angle formula
tan2A=2tanA/[1-(tanA)^2]
cos2a=(cosa)^2-(sina)^2=2(cosa)^2 -1=1-2(sina)^2
sin2A=2sinA*cosA
Triple angle formula
sin3a=3sina-4(sina)^3
cos3a=4(cosa)^3-3cosa
tan3a=tana*tan(π/3 a)*tan(π/3-a)
Half-width formula
sin(A/2)=√((1-cosA)/2) sin(A/2)=-√((1-cosA)/2)
cos(A/2)=√((1 cosA)/2) cos(A/2)=-√((1 cosA)/2)
tan(A/2)=√((1-cosA)/((1 cosA)) tan(A/2)=-√((1-cosA)/((1 cosA))
cot(A/2)=√((1 cosA)/((1-cosA)) cot(A/2)=-√((1 cosA)/((1-cosA))
tan(A/2)=(1-cosA)/sinA=sinA/(1 cosA)
Sum difference product
2sinAcosB=sin(A B) sin(A-B)
2cosAsinB=sin(A B)-sin(A-B) )
2cosAcosB=cos(A B) cos(A-B)
-2sinAsinB=cos(A B)-cos(A-B)
sinA sinB=2sin((A B)/2)cos((A-B)/2
cosA cosB=2cos((A B)/2)sin((A-B)/2)
tanA tanB=sin(A B)/cosAcosB
Integration and difference formula
sin(a)sin(b)=-1/2*[cos(a b)-cos(a-b)]
cos(a)cos(b)=1/2*[cos(a b) cos(a-b)]
sin(a)cos(b)=1/2*[sin(a b) sin(a-b)]
Induction formula
sin(-a)=-sin(a)
cos(-a)=cos(a)
sin(pi/2-a)=cos(a)
cos(pi/2-a)=sin(a)
sin(pi/2 a)=cos(a)
cos(pi/2 a)=-sin(a)
sin(pi-a)=sin(a)
cos(pi-a)=-cos(a)
sin(pi a)=-sin(a)
cos(pi a)=-cos(a)
tgA=tanA=sinA/cosA
Universal formula
sin(a)= (2tan(a/2))/(1 tan^2(a/2))
cos(a)= (1-tan^2(a/2))/(1 tan^2(a/2))
tan(a)= (2tan(a/2))/(1-tan^2(a/2))
Trigonometric function calculation formula
Trigonometric functions:
1. Two angles and formula
sin(A B)=sinAcosB cosAsinB
sin(A-B)=sinAcosB-sinBcosA
cos(A B)=cosAcosB-sinAsinB
cos(A-B)=cosAcosB sinAsinB
tan(A B)=(tanA tanB)/(1-tanAtanB)
tan(A-B)=(tanA-tanB)/(1 tanAtanB)
cot(A B)=(cotAcotB-1)/(cotB cotA)
cot(A-B)=(cotAcotB 1)/(cotB-cotA)
2. Double angle formula
tan2A=2tanA/(1-tan2A) cot2A=(cot2A-1)/2cota
cos2a=cos2a-sin2a=2cos2a-1=1-2sin2a
sinα sin(α 2π/n) sin(α 2π*2/n) sin(α 2π*3/n) …… sin[α 2π*(n-1)/n]=0
cosα cos(α 2π/n) cos(α 2π*2/n) cos(α 2π*3/n) …… cos[α 2π*(n-1)/n]=0
And sin2 (α) sin2 (α-2π/3) sin2 (α 2π/3)=3/2
tanAtanBtan(A B) tanA tanB-tan(A B)=0
3.·Universal formula:
sinα=2tan(α/2)/[1 tan^2(α/2)]
cosα=[1-tan^2(α/2)]/[1 tan^2(α/2)]
tanα=2tan(α/2)/[1-tan^2(α/2)]
4. Half-width formula
sin(A/2)=√((1-cosA)/2) sin(A/2)=-√((1-cosA)/2)
cos(A/2)=√((1 cosA)/2) cos(A/2)=-√((1 cosA)/2)
tan(A/2)=√((1-cosA)/((1 cosA)) tan(A/2)=-√((1-cosA)/((1 cosA))
cot(A/2)=√((1 cosA)/((1-cosA)) cot(A/2)=-√((1 cosA)/((1-cosA))
5. Sum and difference product
2sinAcosB=sin(A B) sin(A-B) 2cosAsinB=sin(A B)-sin(A-B)
2cosAcosB=cos(A B)-sin(A-B) -2sinAsinB=cos(A B)-cos(A-B)
sinA sinB=2sin((A B)/2)cos((A-B)/2 cosA cosB=2cos((A B)/2)sin((A-B)/2)
tanA tanB=sin(A B)/cosAcosB tanA-tanB=sin(A-B)/cosAcosB
cotA cotBsin(A B)/sinAsinB -cotA cotBsin(A B)/sinAsinB
C language simply calculates trigonometric functions, four arithmetic operations, power functions, exponential functions
Commonly used mathematical functions
The C language system provides more than 400 standard functions (called library functions), which can be used directly when designing programs.
Library functions mainly include mathematical functions, character processing functions, type conversion functions, file management functions and memory management
Functions and other categories. Commonly used mathematical functions are described below, and other types of functions will be explained in subsequent chapters.
1. Function name: abs
Prototype: int abs(int i);
Function: Absolute value of integer.
For example, suppose x=abs(5), y=abs(–5), z=abs(0), then x=5, y=5, z=0.
2. Function name: labs
Prototype: long labs(long n);
Function: Absolute value of long integer.
For example, suppose x=labs(40000L), y=labs(–5), z=labs(0), then x=40000, y=5, z=0.
3. Function name: fabs
Prototype: double fabs(double x);
Function: Absolute value of real number.
For example, suppose x=fabs(5.3), y=fabs(–5.3), z=fabs(0), then x=5.3, y=5.3, z=0.
4. Function name: floor
Prototype: double floor(double x);
Function: The largest integer not greater than x, which is equivalent to the mathematical function [x].
For example, let x=floor(–5.1), y=floor(5.9),z=floor(5), then x= –6,y=5,z=5.
5. Function name: ceil
Prototype: double ceil(double x);
Function: The smallest integer not less than x.
For example, suppose x=ceil(–5.9), y=ceil(5.1),z=ceil(5), then x = –5,y=6,z=5
6. Function name: sqrt
Prototype: double sqrt(double x);
Function: square root of x.
For example, assuming x=sqrt(4), y=sqrt(16), then x=1.414214, y=4.0
7. Function name: log10
Prototype: double log10(double x);
Function: Common logarithm of x.
8. Function name: log
Prototype: double log(double x);
Function: natural logarithm of x.
9. Function name: exp
Prototype: double exp(double x);
Function: Euler’s constant e raised to the x power.
10. Function name: pow10
Prototype: double pow10(int p);
Function: 10 to the pth power.
For example, let x=pow10(3),y=pow10(0), then x=1000,y=1
11. Function name: pow
Prototype: double pow(double x, double y);
Function: x to the yth power.
For example, if x=pow(3,2),y=pow(–3,2), then x=9,y=9
12. Function name: sin
Prototype: double sin(double x);
Function: Sine function.
13. Function name: cos
Prototype: double cos(double x);
Function: Cosine function.
14. Function name: tan
Prototype: double tan(double x);
Function: Tangent function.
The above is the detailed content of A collection of trigonometric function calculation formulas for junior high schools: learn about them one by one. For more information, please follow other related articles on the PHP Chinese website!

What if HP Smart automatically installs on Windows 11/10/Servers? Microsoft has released a utility and you can get KB5034510: Microsoft Printer Metadata Troubleshooter Tool online to fix the auto-install bug. Continue reading this php.cn post to find

NETwlv64.sys blue screen is a common error when trying to boot up the Windows 11/10 operating system. How can you fix this BSOD issue to let the PC work properly? In this post, you can find some useful solutions collected by php.cn.

Resizing windows is helpful if you perform more than one program at the same time. Most of you must have tried to resize windows in your daily computer use. This php.cn post compiles several useful methods to tell you how to resize a window.

Are you looking for a way to disable security questions for local accounts in Windows 10/11? In this post from php.cn, we will walk you through how to prevent the use of security questions for local accounts via Local Group Policy Editor and Registry

Windows 11 Insider Preview Build 23486 announced to put forward a new feature, Passkey settings, to improve the password-using experience. You can create and add new passkeys on your computer, as well as delete any of them. This php.cn post walks you

Are you suffering from the “OneDrive there was a problem signing you in” error when trying to log in to OneDrive? Now in this post from php.cn, we will walk you through how to resolve this OneDrive sign-in issue.

Windows 11 and Windows 10 desktop icons are overlapping? Here in this post from php.cn, we will provide you with a couple of useful solutions to help you get rid of this Windows desktop icons bug.

OneDrive shows you the folder twice in File Explorer with the same OneDrive icons. That’s some bugs occurring on OneDrive. You may take effective methods to fix the situation of two OneDrive folders in File Explorer. This post on php.cn will help you


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Atom editor mac version download
The most popular open source editor

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),