let p(x) be a real polynomial of degree 2015. suppose that P(n) =n/n+1 for all n=0;1;2;...;2015
The value of P(2016) is .........
Let P(x) be a polynomial of degree 2015. Suppose P(n)=\(\dfrac{n}{n+1}\) for all n =0, 1, 2, ..., 2015. Find the value of P(2016)
let P(x) be a polynomial of degree 3 and x1, x2, x3 are the solutions of P(x)=0. let \(\frac{P\left(\frac{1}{3}\right)-P\left(\frac{-1}{3}\right)}{P\left(0\right)}=8,\frac{P\left(\frac{1}{4}\right)-P\left(\frac{-1}{4}\right)}{P\left(0\right)}=9\)and x1+x2+x3 = 35. find the value of \(\frac{x2+x3}{x1}+\frac{x1+x3}{x2}+\frac{x1+x2}{x3}\)
Let a,b be the roots of equation \(x^2-px+q=0\) and let c,d be the roots of the equation \(x^2-rx+s=0\), where p,q,r,s are some positive real numbers. Suppose that :
\(M=\frac{2\left(abc+bcd+cda+dab\right)}{p^2+q^2+r^2+s^2}\)
is an integer. Determine a,b,c,d .
find the value of n such that the polynomial 2x^5 - 3x^3 + x^2 +n is divisible by the polynomial x+2
tìm giá trị của n sao cho đa thức 2x ^ 5 - 3x ^ 3 + x ^ 2 + n chia hết cho đa thức x + 2
Let N be the langest number ò region that can be formed by drawing 2016 straight lines on a plane. Find the sum ò all digits of N.
Let a,b be the roots of equation \(x^2-px+q=0\) and let c,d be the roots of the equation \(x^2-rx+s=0\), where p,q,r,s are some positive real numbers. Suppose that :
\(M=\frac{2\left(abc+bcd+cda+dab\right)}{p^2+q^2+r^2+s^2}\)
is an integer. Determine a,b,c,d .
Ta có:
\(\hept{\begin{cases}ab=q\\a+b=p\end{cases}}\)và \(\hept{\begin{cases}cd=s\\c+d=r\end{cases}}\)
\(M=\frac{2\left(abc+bcd+cda+dab\right)}{p^2+q^2+r^2+s^2}=\frac{2\left(qc+sb+sa+qd\right)}{p^2+q^2+r^2+s^2}\)
\(=\frac{2\left(qr+sp\right)}{p^2+q^2+r^2+s^2}\le\frac{2\left(qr+sp\right)}{2\left(qr+sp\right)}=1\)
Với M = 1 thì \(\hept{\begin{cases}q=r\\p=s\end{cases}}\)
Tới đây thì không biết đi sao nữa :D
thôi bỏ bài này đi cũng được vì chưa tới lúc cần dung phương trình
câu 1: A rectangle has a length of 60cm and a width of 30cm. It is cut into 2 indentical squares, 2 identical rectangles and a shaded small square. Find the area of the shaded square.
Find the area of the shaded square.
câu 2.The number of ordered pairs (x; y) where x, y ∈ N* such that x2y2 - 2(x + y) is perfect square is ..........
câu 3.Let ABCD be the square with the side length 56cm. If E and F lie on CD, C respectively such that CF = 14cm and EAF = 45o then CE = ........cm.
câu 4.
Given P(x) = (x2 - 1/2 x - 1/2)1008
If P(x) = a2016x2016 + a2015x2015 + ..... + a1x + a0
then the value of the sum a0 + a2 + a4 + .... + a2014 is ...........
Let f(x) the polynomial given by f(x) = (1 + 2x + 3x2 + 4x3 + 5x4 + 84x5)
Suppose that f(x) = ao + a1x + a2x2 + ..... + ..... + a50x50.
The value of T = a1 + a2 + .... + a50 is .........
Let f(x) the polynomial given by f(x) = (1 + 2x + 3x2 + 4x3 + 5x4 + 84x5)
Suppose that f(x) = ao + a1x + a2x2 + ..... + ..... + a50x50.
The value of T = a1 + a2 + .... + a50 is ......
Cách khai báo sau đây là đúng hay sai? Nếu sai hãy sửa lại:
Var x:array [10,13] of integer;
S:=0; n:=0; while S < for do n:=n + 1; S:= s+n
For i:=1 to 10 do; writeln ('A')
Var x: real; begin for x:=1 to 10 do writeln ('A'); end.
A/ Sai.
Sửa: Var x:array[10..13] of integer;
B/ Sai.
Sửa: S:= 0; n:= 0; while S < 50 do
begin n:= n + 1; S:= S + n; end;
C/ Sai.
Sửa: for i:= 1 to 10 do writeln('A');
D/ Sai.
Sửa x: integer; begin for x:= 1 to 10 do writeln('A'); end.