The study aimed to evaluate the level of MMP‑2 in acute myeloid leukemia (AML) patients in comparison with that in remission status, and healthy subjects, and to find its correlation with hematologic parameters. This study included sixty newly diagnosed AML patients. Remission status was assessed after induction chemotherapy. The overall survival (OS) was determined after 6 months. The plasma MMP‑2 level was measured at diagnosis by enzyme immunoassay. Twenty‑eight healthy individuals were recruited as a control group. Plasma MMP‑2 was higher in AML patients than in healthy individuals (P = 0.005). The level of MMP‑2 was much higher in the M5 subtype than in the other subtypes (P = 0.0001). There was no statistically significant d
... Show MoreTillage appearance device is mechanical, electric-electronic design, getting Patent from the Central Organization for Standardization and Quality Control – Industrial Property Department - Ministry of Planning – The Republic of IRAQ under number Patent 3876 in 20 / 4 / 2014, calculates the number of clods per area by Tillage appearance device, This is done through the generation electrical impulses are sent to the controlled accurate calculates number clods required space and shows the result on the screen in order to see the tillage view per area. Three factor used in these experiment, first factor represents forward speed of tractor three levels (3.5, 4.5, and 5.5 km/h), second factor represent soil moisture content at two levels (14
... Show MoreOften times, especially in practical applications, it is difficult to obtain data that is not tainted by a problem that may be related to the inconsistency of the variance of error or any other problem that impedes the use of the usual methods represented by the method of the ordinary least squares (OLS), To find the capabilities of the features of the multiple linear models, This is why many statisticians resort to the use of estimates by immune methods Especially with the presence of outliers, as well as the problem of error Variance instability, Two methods of horsepower were adopted, they are the robust weighted least square(RWLS)& the two-step robust weighted least square method(TSRWLS), and their performance was verifie
... Show MoreBackground: Breast cancer (BC) is the most widespread cancer among women worldwide. Its incidence and mortality rates have risen in the previous three decades as a result of changes in risk factor profiles, improved cancer registry, and cancer detection. Objective: The study's goals were to establish if Ki-67 could be used as a potential marker in serum of cancer disease patients as well as their interaction with vascular endothelial growth factor (VEGF) and ES in various stages of breast cancer to assess their function in the progression of BC. Materials and Methods: The levels of Ki-67, VEGF and endostatin (ES) in serum were assessed by commercial enzyme linked immunosorbent assay (ELISA) kits in 60 women diagnosed with breast cancer
... Show MoreThis paper considers the nonlinear homogeneous fractional Burger's equation as a type of nonlinear fractional partial differential equations (FPDE). Our goal in this paper is to show that an initial value problem (IVP) can be modified with a second initial condition when (α ∈ ( 1,2 ]) as the velocity of the movement, and the obtained solution agrees with the nature of the wave with space and time for the problem. The Caputo fractional derivative is used in all the fractional derivatives. Also, the algorithm of the Laplace transform decomposition method (LTDM) for fractional PDEs is presented. The approximate solution converges to the exact solution in Theorem 1. Also, a numerical simulation is made to confirm the theoretical resu
... Show MoreThis paper considers approximate solution of the hyperbolic one-dimensional wave equation with nonlocal mixed boundary conditions by improved methods based on the assumption that the solution is a double power series based on orthogonal polynomials, such as Bernstein, Legendre, and Chebyshev. The solution is ultimately compared with the original method that is based on standard polynomials by calculating the absolute error to verify the validity and accuracy of the performance.
The primary objective of the current paper is to suggest and implement effective computational methods (DECMs) to calculate analytic and approximate solutions to the nonlocal one-dimensional parabolic equation which is utilized to model specific real-world applications. The powerful and elegant methods that are used orthogonal basis functions to describe the solution as a double power series have been developed, namely the Bernstein, Legendre, Chebyshev, Hermite, and Bernoulli polynomials. Hence, a specified partial differential equation is reduced to a system of linear algebraic equations that can be solved by using Mathematica®12. The techniques of effective computational methods (DECMs) have been applied to solve some s
... Show MoreA skip list data structure is really just a simulation of a binary search tree. Skip lists algorithm are simpler, faster and use less space. this data structure conceptually uses parallel sorted linked lists. Searching in a skip list is more difficult than searching in a regular sorted linked list. Because a skip list is a two dimensional data structure, it is implemented using a two dimensional network of nodes with four pointers. the implementation of the search, insert and delete operation taking a time of upto . The skip list could be modified to implement the order statistic operations of RANKand SEARCH BY RANK while maintaining the same expected time. Keywords:skip list , parallel linked list , randomized algorithm , rank.