Giải giúp mik 2 bài tập cuối vs ạ
Hãy nhập câu hỏi của bạn vào đây, nếu là tài khoản VIP, bạn sẽ được ưu tiên trả lời.
Bài cuối mình không thấy rõ đề nhưng mình đoán là thế này bạn nhé.
Câu 3:
a: Ta có: \(2x\left(3x-1\right)-\left(x-3\right)\left(6x+2\right)\)
\(=6x^2-2x-6x^2-2x+18x+6\)
=14x+6
b: Ta có: \(2x\left(x+7\right)-3x\left(x+1\right)\)
\(=2x^2+14x-3x^2-3x\)
\(=-x^2+11x\)
Câu 2:
a: Ta có: \(\left(-8x^5+12x^3-16x^2\right):4x^2\)
\(=-8x^5:4x^2+12x^3:4x^2-16x^2:4x^2\)
\(=-2x^3+3x-4\)
b: Ta có: \(\left(12x^3y^3-18x^2y+9xy^2\right):6xy\)
\(=12x^3y^3:6xy-18x^2y:6xy+9xy^2:6xy\)
\(=2x^2y^2-3x+\dfrac{3}{2}y\)
c: Ta có: \(\dfrac{x^3-11x^2+27x-9}{x-3}\)
\(=\dfrac{x^3-3x^2-8x^2+24x+3x-9}{x-3}\)
\(=x^2-8x+3\)
d: Ta có: \(\dfrac{6x^4-13x^3+7x^2-x-5}{3x+1}\)
\(=\dfrac{6x^4+2x^3-15x^3-5x^2+12x^2+4x-5x-\dfrac{5}{3}-\dfrac{10}{3}}{3x+1}\)
\(=2x^3-5x^2+4x-\dfrac{5}{3}-\dfrac{\dfrac{10}{3}}{3x+1}\)
1.
- Hợp chất cấu tạo từ 2 nguyên tố: Fe và Cl
- Hợp chất có: 1 nguyên tố Fe và 3 nguyên tố Cl
- \(PTK=56+35,5\text{ x }3=162,5\left(đvC\right)\)
===========
2.
- Hợp chất cấu tạo từ 3 nguyên tố: Na, C và O
- Hợp chất có: 2 nguyên tố Na, 1 nguyên tố C và 3 nguyên tố O
- \(PTK=23\text{ x }2+12+16\text{ x }3=106\left(đvC\right)\)
==========
3.
- Hợp chất cấu tạo từ 3 nguyên tố: H, P và O
- Hợp chất có: 2 nguyên tố H, 1 nguyên tố P và 4 nguyên tố O
- \(PTK=1\text{ x }3+31+16\text{ x }4=98\left(đvC\right)\)
==========
4.
- Hợp chất cấu tạo từ 2 nguyên tố: S và O
- Hợp chất có: 1 nguyên tố S và 3 nguyên tố O
- \(PTK=32+16\text{ x }3=80\left(đvC\right)\)
1 does this red dress cost
2 is this shirt
does this short cost
3 do these shoes cost
4 has brown backpack
5 how to get to the bus stop
6 to stay in bed
7 are cleaned by Nga everyday
8 is played with a bow
9 worked for that company for 10 years
10 15 minutes walking to school
0,84km=840m
Diện tích khu vườn là:
\(840^2\cdot\dfrac{9}{14}\cdot\dfrac{5}{14}=162000\left(m^2\right)=16,2\left(ha\right)\)
840
840:2=420
420:(9+5)x9=270
420-270=150
270x150=40500=4,05
40500;4,05
Vận tốc truyền âm trong nước biển : 1500m/s nha
\(s=\dfrac{v.t}{2}=\dfrac{1500.3}{2}=2250\left(m\right)\\ \Rightarrow D\)
\(\left|2x-3\right|=3-2x\)
\(ĐK:x\le\dfrac{3}{2}\)
\(\Leftrightarrow\left[{}\begin{matrix}2x-3=3-2x\\3-2x=3-2x\end{matrix}\right.\)
\(\Leftrightarrow\left[{}\begin{matrix}x=\dfrac{3}{2}\\0=0\left(đúng\right)\end{matrix}\right.\)
Vậy \(S=\left\{x\in R;x=\dfrac{3}{2}\right\}\)
1 interested in travelling by plane
2 15 minutes riding his bike to school
3 is made by my mother everymorning
4 take care of her little brother
5 able to speak 2 languages when he was young
6 able to play the piano
7 is played all over VN
8 to play voleyball very well when he was young
9 to go fishing when he was young
10 way to the shopping mall
program tim_dien_tich;
uses crt;
var a1,a2,b1,b2,x1,x2,i,dem:longint;
dtnn,dt1,dt2,dt3,dt4,dt5,dt6:real;
x3:array[1..1000]of longint;
dt:array[1..1000]of real;
begin
clrscr;
write('nhap chieu dai va chieu rong:');readln(a1,b1);
a2:=a1;b2:=b1;dt1:=a1*b1;dt2:=dt1/2;
x1:=0;i:=0;dem:=0;
writeln(dt2:5:1);
writeln(x1);
while x1<b1 do
begin
dt3:=a2*x1/2;
dt4:=(b2-x1)*x1/2;
dt5:=b2*(a2-x1)/2;
dt6:=dt1-dt3-dt4-dt5;
dt[i]:=dt6;x3[i]:=x1;
x1:=x1+1;i:=i+1;dem:=dem+1;
end;
dtnn:=dt[1];
for i:=1 to dem do
begin
if (dtnn>dt[i])and(dt[i]<>0) then dtnn:=dt[i];
end;
writeln(dtnn:5:1);
for i:=1 to dem do
if dtnn=dt[i] then writeln(x3[i]);
readln;
end.