Những câu hỏi liên quan
Anh Chứ Ai
Xem chi tiết
Đoàn Thị Linh Chi
10 tháng 5 2016 lúc 13:13

e ms hc lp 8 thui àh

Bình luận (0)
Anh Chứ Ai
10 tháng 5 2016 lúc 13:21

trang nay zo em lập ra ak

 

Bình luận (0)
Đoàn Thị Linh Chi
10 tháng 5 2016 lúc 13:22

lập trang nào z a?

Bình luận (0)
Anh Chứ Ai
Xem chi tiết
Nguyễn My
Xem chi tiết
Nguyễn Việt Lâm
2 tháng 9 2021 lúc 12:19

Đặt \(cosx-sinx=t\Rightarrow-\sqrt{2}\le t\le\sqrt{2}\)

\(t^2=1-2sinx.cosx\Rightarrow sinx.cosx=\dfrac{1-t^2}{2}\)

Pt trở thành:

\(t\left(1+\dfrac{1-t^2}{2}\right)+1=0\)

\(\Leftrightarrow t^3-3t-2=0\)

\(\Leftrightarrow\left(t-2\right)\left(t+1\right)^2=0\Rightarrow\left[{}\begin{matrix}t=2\left(loại\right)\\t=-1\end{matrix}\right.\)

\(\Rightarrow cosx-sinx=-1\)

\(\Leftrightarrow\sqrt[]{2}cos\left(x+\dfrac{\pi}{4}\right)=-1\)

\(\Leftrightarrow cos\left(x+\dfrac{\pi}{4}\right)=-\dfrac{\sqrt{2}}{2}\)

\(\Leftrightarrow cos\left(x+\dfrac{\pi}{4}\right)=cos\left(\dfrac{3\pi}{4}\right)\)

\(\Leftrightarrow...\)

Bình luận (1)
vitcon
Xem chi tiết
Nguyễn Xuân Thành
21 tháng 8 2023 lúc 18:12

\(1-\left(x-1\right):3=\dfrac{2}{3}\)

\(\Rightarrow\left(x-1\right):3=1-\dfrac{2}{3}\)

\(\Rightarrow\left(x-1\right):3=\dfrac{1}{3}\)

\(\Rightarrow x-1=\dfrac{1}{3}.3\)

\(\Rightarrow x-1=1\)

\(\Rightarrow x=2\)

Bình luận (0)
Nguyễn Xuân Thành
21 tháng 8 2023 lúc 18:12

Mình làm lại nhé câu trước mình bị sai

Bình luận (0)
Mỹ Tâm
Xem chi tiết
Nguyễn Việt Lâm
1 tháng 11 2021 lúc 14:48

\(y'=\dfrac{\left(-2x+2\right)\left(x-3\right)-\left(-x^2+2x+c\right)}{\left(x-3\right)^2}=\dfrac{-x^2+6x-6-c}{\left(x-3\right)^2}\)

\(\Rightarrow\) Cực đại và cực tiểu của hàm là nghiệm của: \(-x^2+6x-6-c=0\) (1)

\(\Delta'=9-\left(6+c\right)>0\Rightarrow c< 3\)

Gọi \(x_1;x_2\) là 2 nghiệm của (1) \(\Rightarrow\left\{{}\begin{matrix}-x_1^2+6x_1-6=c\\-x_2^2+6x_2-6=c\end{matrix}\right.\)

\(\Rightarrow m-M=\dfrac{-x_1^2+2x_1+c}{x_1-3}-\dfrac{-x_2^2+2x_2+c}{x_2-3}=4\)

\(\Leftrightarrow\dfrac{-2x_1^2+8x_1-6}{x_1-3}-\dfrac{-2x_2^2+8x_2-6}{x_2-3}=4\)

\(\Leftrightarrow2\left(1-x_1\right)-2\left(1-x_2\right)=4\)

\(\Leftrightarrow x_2-x_1=2\)

Kết hợp với Viet: \(\left\{{}\begin{matrix}x_2-x_1=2\\x_1+x_2=6\end{matrix}\right.\) \(\Rightarrow\left\{{}\begin{matrix}x_1=2\\x_2=4\end{matrix}\right.\)

\(\Rightarrow c=2\)

Có 1 giá trị nguyên

Bình luận (0)
Vũ Khôi Nguyên
Xem chi tiết
Nhi Cấn Ngọc Tuyết
Xem chi tiết
nthv_.
28 tháng 10 2021 lúc 8:54

a. \(R=R1+R2+R3=5+6+15=26\Omega\)

b. \(I=I1=I2=I3=1A\left(R1ntR2ntR3\right)\)

\(\left\{{}\begin{matrix}U=IR=1.26=26\left(V\right)\\U1=I1.R1=1.5=5\left(V\right)\\U2=I2.R2=1.6=6\left(V\right)\\U3=I3.R3=1.15=15\left(V\right)\end{matrix}\right.\)

c. \(R'=U:I'=26:0,5=52\Omega\)

\(\Rightarrow R_x=R'-\left(R1+R2\right)=52-\left(5+6\right)=41\Omega\)

Bình luận (0)
Hung Do Van
Xem chi tiết
Nguyễn Lê Phước Thịnh
4 tháng 5 2021 lúc 13:03

Câu 1: 

const fi='dulieu.dat'

fo='thaythe.out'

var f1,f2:text;

a:array[1..100]of string;

n,d,i,vt:integer;

begin

assign(f1,fi); reset(f1);

assign(f2,fo); rewrite(f2);

n:=0;

while not eof(f1) do 

  begin

n:=n+1;

readln(f1,a[n]);

end;

for i:=1 to n do 

  begin

d:=length(a[i]);

vt:=pos('anh',a[i]);

while vt<>0 do 

  begin

delete(a[i],vt,3);

insert('em',a[i],vt);

vt:=pos('anh',a[i]);

end;

end;

for i:=1 to n do 

  writeln(f2,a[i]);

close(f1);

close(f2);

end.

Bình luận (0)
Nguyễn Lê Phước Thịnh
4 tháng 5 2021 lúc 13:05

Câu 2: 

uses crt;

const fi='mang.inp'

fo='sapxep.out'

var f1,f2:text;

a:array[1..100]of integer;

i,n,tam,j:integer;

begin

clrscr;

assign(f1,fi); rewrite(f1);

assign(f2,fo); rewrite(f2);

write('Nhap n='); readln(n);

for i:=1 to n do 

  begin

write('A[',i,']='); readln(a[i]);

end;

for i:=1 to n do 

  write(f1,a[i]:4);

for i:=1 to n-1 do 

  for j:=i+1 to n do 

if a[i]>a[j] then

begin

tam:=a[i];

a[i]:=a[j];

a[j]:=tam;

end;

for i:=1 to n do 

  write(f2,a[i]:4);

close(f1);

close(f2);

end.

Bình luận (0)
Nguyễn Mạnh Vũ
Xem chi tiết
Akai Haruma
28 tháng 10 2023 lúc 10:59

Lời giải:
$A=\cos 2x-2\sin 5x\sin x=\cos 2x-2.\frac{-1}{2}[\cos (5x+x)-\cos (5x-x)]$

$=\cos 2x+\cos 6x-\cos 4x$

$=(\cos 2x+\cos 6x)-\cos 4x$

$=2\cos \frac{2x+6x}{2}\cos \frac{6x-2x}{2}-\cos 4x$

$=2\cos 4x\cos 2x-\cos 4x$

$=\cos 4x[2\cos 2x-1]$

Những đáp án A,B,C,D bạn đưa ra không có đáp án nào đúng cả.

Bình luận (1)