Giúp làm với ae
Tính ex ex= 1 + (x1)/(1!) + (x2)/(2!) + ... (xn)/(n!)
Lập trình Free Pascal á
Tui thi HSG:))
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.
uses crt;
var x:array[1..100]of real;
n,i:integer;
tb:real;
begin
clrscr;
write('Nhap n='); readln(n);
for i:=1 to n do
begin
write('X[',i,']='); readln(x[i]);
end;
tb:=0;
for i:=1 to n do
tb:=tb+x[i];
writeln(tb/n:4:2);
readln;
end.
Tham khảo lời giải tại đây:
https://hoc24.vn/cau-hoi/cho-n-so-x1-x2-xn-moi-so-nhan-gia-tri-1-hoac-1chung-minh-rang-neu-x1x2-x2x3-xnx1-0-thi-n-chia-het-cho-4.3190495787733
Tham khảo :
Lời giải:
Vì x1,x2,...,xnx1,x2,...,xn nhận giá trị 11 hoặc −1−1 nên x1x2,x2x3,...,xnx1x1x2,x2x3,...,xnx1 nhận giá trị 11 hoặc −1−1
Để tổng x1x2+...+xnx1=0x1x2+...+xnx1=0 thì số số hạng nhận giá trị 11 bằng số số hạng nhận giá trị −1−1
Gọi số số hạng nhận giá trị 11 và số số hạng nhận giá trị −1−1 là kk
Tổng số số hạng: n=k+k=2kn=k+k=2k
Lại có:
(−1)k1k=x1x2.x2x3...xnx1=(x1x2...xn)2=1(−1)k1k=x1x2.x2x3...xnx1=(x1x2...xn)2=1
⇒k⇒k chẵn
⇒n=2k⋮4
\(pt:3x^2-4x+m+5=0\\ \Delta'=2^2-3\left(m+5\right)=4-3m-15=-3m-11\)
pt có 2 nghiệm phân biệt \(\Leftrightarrow\Delta'>0\Leftrightarrow-3m-11>0\Leftrightarrow m< \dfrac{-11}{3}\)
Theo hệ thức Vi-et: \(\left\{{}\begin{matrix}x_1+x_2=\dfrac{4}{3}\\x_1x_2=\dfrac{m+5}{3}\end{matrix}\right.\)
Theo đề bài ta có:
\(\dfrac{1}{x_1}+\dfrac{1}{x_2}=-\dfrac{4}{7}\Leftrightarrow\dfrac{x_1+x_2}{x_1x_2}=-\dfrac{4}{7}\Leftrightarrow\dfrac{\dfrac{4}{3}}{\dfrac{m+5}{3}}=-\dfrac{4}{7}\Leftrightarrow\dfrac{4}{3}=\dfrac{-4m-20}{21}\Rightarrow m=-12\left(N\right)\)
\(\Delta'=4-3\left(m+5\right)=-3m-11\)
Phương trình có 2 nghiệm pb khi \(\Delta'>0\Leftrightarrow-3m-11>0\Rightarrow m< -\dfrac{11}{3}\)
Theo hệ thức Viet: \(\left\{{}\begin{matrix}x_1+x_2=\dfrac{4}{3}\\x_1x_2=\dfrac{m+5}{3}\end{matrix}\right.\)
Để biểu thức đề bài xác định \(\Rightarrow x_1x_2\ne0\Rightarrow m\ne-5\)
Khi đó:
\(\dfrac{1}{x_1}+\dfrac{1}{x_2}=-\dfrac{4}{7}\Leftrightarrow\dfrac{x_1+x_2}{x_1x_2}=-\dfrac{4}{7}\)
\(\Rightarrow7\left(x_1+x_2\right)=-4x_1x_2\)
\(\Leftrightarrow7.\dfrac{4}{3}=-4\left(\dfrac{m+5}{3}\right)\)
\(\Rightarrow m=-12\) (t/m)
program tinh_ex;
var
x, ex, gt: real;
n, i: integer;
begin
write('Nhap vao so x: '); readln(x);
n := 10; (* so luong so hang *)
ex := 1; gt := 1;
for i := 1 to n do
begin
gt := gt * i; (* tinh giai thua i! *)
ex := ex + power(x, i) / gt; (* tinh tong theo cong thuc *)
end;
writeln('Gia tri cua e^', x, ' la: ', ex);
readln;
end.
program tinh_e;
var x: real;
n: integer;
s, t: real;
i: integer;
begin
write('Nhap x: '); readln(x);
write('Nhap n: '); readln(n);
s := 1; t := 1;
for i := 1 to n do
begin
t := t * x / i;
s := s + t;
end;
writeln('e = ', s);
end.