Bai1:
1) Tìm x;y;z biết; (xy+1)/9=(xz+2)/15=(yz+3)/27 và xy+xz+yz=11
2) Biết (bz-cy)/a= (cx-az)/b=(ay-bx)/c (a,b,c khong bang 0). Chung minh rang x/a=y/b=z/c
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.
Xét phương trình có dạng $ax^2+bx+c=0$ có: \(\left\{{}\begin{matrix}a=1\ne0\\b=-\left(m+1\right)\\c=m\end{matrix}\right.\)
suy ra phương trình là phương trình bậc 2 một ẩn x
Có \(\Delta=b^2-4ac=m^2+2m+1-4.1.m=m^2-2m+1=\left(m-1\right)^2\ge0\)
nên phương trình luôn có 2 nghiệm
Theo hệ thức Vi-et \(\left\{{}\begin{matrix}x_1+x_2=\dfrac{-b}{a}=\dfrac{-\left[-\left(m+1\right)\right]}{1}=m+1\\x_1.x_2=\dfrac{c}{a}=\dfrac{m}{1}=m\end{matrix}\right.\)
Phương trình có 2 nghiệm trái dấu và nghiệm dương > trị tuyệt đối nghiệm âm \(\Leftrightarrow\left\{{}\begin{matrix}\Delta\ge0\\ac< 0\\x_1+x_2>0\end{matrix}\right.\Leftrightarrow\left\{{}\begin{matrix}m< 0\\m+1>0\end{matrix}\right.\Leftrightarrow0>m>-1\)
a)4×(x-5)-(x-1)×(4x-3)=5
=>4x-20-4x2+7x-3-5=0
=>-4x2+11x-28=0
=>-4(x2-\(\frac{11x}{4}\)+7)=0
=>\(-4\left(x-\frac{11}{8}\right)^2-\frac{327}{16}< 0\)
=>vô nghiệm
b) (3x-4)(x-2)=3x(x-9)-3
=>3x2-10x+8=3x2-27x-3
=>17x=-11
=>x=-11/17
c)(x-5)×(x-4)-(x+1)×(x-2)=7
=>x2-9x+20-x2+x+2=7
=>22-8x=7
=>-8x=-15
=>x=8/15
program bai1;
uses crt;
var x,y,n:integer;
begin
clrscr;
x:=7;
n:=2.68;
write('nhap so x:'); readln(x);
write('nhap so y:');readln(y);
if x mod 2 =0 then y:=y*x
else y:=y*n;
write('ket qua phep tinh la:', y);
readln
end.
bài 1:
\(x^3+x=0\)
\(\Leftrightarrow x\left(x^2+1\right)=0\)
\(\Rightarrow x=0\)(vì \(x^2+1\ne0\))
bài 2:
\(x\left(x+y\right)-5x-5y\)
\(=x\left(x+y\right)-5\left(x+y\right)\)
\(=\left(x-5\right)\left(x+y\right)\)
***lesson 1
x^3 - x = 0
x(x^2 - 1) = 0
Since anything time zero is zero, either one of the terms in the multiplication must be zero.
First multiplicand is x^2 - 1.
x^2 - 1 = 0
x^2 = 1
x = 1 and -1
Second multiplicand is x. This answer is merely:
x = 0
So the answers to your question are x = -1, 0 and 1.